Hello
I added enable filter row button for listviews in blazor, but now I wonder how can I use model differences to save and load filters to grid. I guess I need to subscribe on change grid filters and store info in model and on load grid apply this filters. How can I achieve it?
How to store list view filters in model differences in blazor
Answers approved by DevExpress Support
Hello Andrey,
v22.2.4+
DxGridListEditor stores the current filter criteria in the Application Model (IModelListView.Filter). Internally, it uses the DxGrid API: SetFilterCriteria(CriteriaOperator) and GetFilterCriteria().
v22.2.3-
Filter Row values cannot be stored in the Application Model because the Blazor Data Grid does not have a corresponding public API. You can only save and restore the entire layout, including the filter, column positions, and sorting:
DxDataGrid<T>.LayoutChanged Event
Access List View Grid Control Settings Using a Controller
It will be possible to restore Filter Row values in the future, when the new DxGrid component supports more functionality: A New Blazor Grid Control (Preview) is Available in v21.1. However, I cannot give you any ETA right now.
Hello,
I created a separate ticket on your behalf: T1142019: Blazor - How to store list view filters in model differences in XAF v22.2.3. We placed it in our processing queue and will process it shortly.
Hello,
In v22.2.4, DxGridListEditor stores the current filter criteria in the Application Model (IModelListView.Filter). Internally, it uses the DxGrid API: SetFilterCriteria(CriteriaOperator) and GetFilterCriteria().
Thanks,
Arkady