I am using a RadDataGrid with SelectionMode set to Multiple. I have bound the SelectedItems to an observableCollection and this al works fine. I have enable filtering on colums and with the SearchPanel which works fine.
I can now selected multiple items and then apply a filter. Now I would like to access all items that are filtered and selected. The SelectedItems contains all selected items, filtered and unfiltered but only want the filtered (+ selected) ones.
Is there a property that contains the filtered items so I can intersect it with the SelectedItems?
If not can I apply the filters to the ItemsSource my self and get the filtered items this way?
Is it possible to get the list of filtered AND selected items any other (simple) way?
