Hello,
I have an application that follows the MVVM pattern that contains data presented in different RadGridView items.
My grids are bound to different QueryableCollectionViews exposed as IEnumerable properties in a view model.
Lets say I have a refresh-button that grabs data from a webapi and I want to update the grids with it.
Is there a way to refresh the QueryableCollectionView with the data without loosing filters, groupings etc?
Today I re-create my QueryableCollectionViews and manually add possible filters etc. The issue I'm having right now is that while the filters do work, the funnel icons for the filtered columns does not light up, so the client might not realise the grid is filtered.
Is there an easy way around this?
Thanks in advance,
Fredrik