Column filters for Custom Pagination (Advanced Pagination Module)

0
After implementing custom pagination for data grid 2, column filters work only for that particular page. Column filters only apply to the current page after implementation of custom pagination for data grid 2.  Example: Let's say there are 30 users with different statuses (20 active and 10 inactive). If the data grid displays 10 users per page and the first page shows 2 active users, applying a filter for "Status = Active" on the first page will only show those 2 users, missing the 18 active users on other pages.   Is there any way or existing methods to solve this problem?
asked
1 answers
0

Best alternative is view entities in 10.22: this allows you have a fully functional data grid 2 on a query combining multiple entities, and have the grid functionality like paging, sorting and filtering executed by the database for better performance. More info see: https://docs.mendix.com/refguide/view-entity-overview-pages/

answered