I have a FilterView on the form as well as a GridView
When I apply the filter - the gridview filters as expected.
When I refresh the grid, the selected filters on the FilterView remain in place - which is what I want.
But the GridView (after the refresh) shows all of the data.
What I'd like to do is something like FilterView1.ApplyFilters to cause the Grid to filter accordingly... but I do not see such a method.
Is there some way that I could programmatically tell the FilterView to 're-apply' the selected filters?
Of course, if I deselect and then reselect a filter element the grid view will get filtered appropriately - but, I'd like to just tell the filter to 're-apply' then selected filters programmatically.
How can I do this?