This question is locked. New answers and comments are not allowed.
Hi,
I have a Data Collection, PagedCollectionView, Bound to an ItemsControl. Currently, I'm providing to my customers some fast filters, predefined at design time, i.e. filtering when a bool field is true that is activated via a toggle button. Each time users clicks on the toggle my view model object sets the PagedCollectionView.Filter property according the button state.
Now, I'd like to take profit of the RadDataFilter. I want to keep the fast filter funcionality. So the result filter will be an And with the fast filters selected and the DataFilter resulting filter. And I'm facing several problems/doubts with this control;
Any help achieving this behaviour?
I have a Data Collection, PagedCollectionView, Bound to an ItemsControl. Currently, I'm providing to my customers some fast filters, predefined at design time, i.e. filtering when a bool field is true that is activated via a toggle button. Each time users clicks on the toggle my view model object sets the PagedCollectionView.Filter property according the button state.
Now, I'd like to take profit of the RadDataFilter. I want to keep the fast filter funcionality. So the result filter will be an And with the fast filters selected and the DataFilter resulting filter. And I'm facing several problems/doubts with this control;
- I want to choose the filterable properties, being able to provide a friendly name, maybe different of than the real name.
- Data collection contains complex data, so I'd like to provide any sort of property path like "Property1.Propery3" .
- Finally, I'd like to get the resulting expression of the filter, similar to a Predicator<object>
Any help achieving this behaviour?