Server-side paging with load more

0
Hi guys I think I’m dumb, cause I can’t find any way implement a very simple requirement which is server-side paging (because of huge data, as always) + “load more” button (just like we have in listViews ; I can’t use paging bar for UX reasons) + a microflow datasource. - with a list view : “load more” functionnality actually SHOWS more, but all data is loaded by one single call to my microflow - with a data grid : way too ugly - with a template grid : the way data is displayed doesn’t match my needs (I need each page to be added at the end of the list) Isn’t it a basic need ? o_O
asked
2 answers
1

Mendix recently added a feature for this: https://docs.mendix.com/howto/logic-business-rules/server-side-paging#5-adding-paging-support-to-the-microflow-data-source

answered
-1

Are you using Persistent entity to show the Data , if yes Load all data at once and use pagination widget with some Page Size. Same applies for the Non Persistent too .

You can refer https://appstore.home.mendix.com/link/app/105694/

Custom Pagination also possible with some Domain Modeling

 

answered