I am using DataFilter and its source is Bind to the Grid, I don't want to use the unbound mode because then I will have to populate everything. I am using rest service to get all the data and I want to do the filtering also on the server side.
- User open the window
- I make a rest request to get the data and populate the grid
- User add a filter
- I am listening for the collection changed and item changed event
- I loop through all the filters and send a request to get the filtered data
The problem is that DataFilter also filters the grid on the client side, so If my rest request takes time the grid items source is updated twice, one from the data filter and another one when rest returns the data
Is there any preview event or any other way to tell datafilter ot not filter the grid