Hello,
We're trying to create a data paging system using the RadGridView, and are having difficulty with the filtering.
Here's the scenario.
First, we set up the filtering mode = Filter row.
When a filter is applied, we intercept the Colum info that's being filtered in the "Grid_Filtering" event to create our Filtering information to pass back to the web services to get data.
The issues is that the grid filters (Let's say it reduces the rows to 3), then as we call our web service to get data from the back end, which may have 10 items in the dataset.
My question is; Are there any examples where one can gather the filter information, then prevent the internal grid from filtering, then applying our new data set?
We've cobbled it together, but it looks bad having the grid display one data set, only to have it clear out and load another.
What we're trying to do is pull the pages via webservice instead of loading the entire dataset into memory.