suitable widget to get and load data dynamically

0
Hi Experts, In our project, we have 100’s of branches. fetching all of these branches and showing it on UI(currently using data grid) takes a lot of time. so we have decided to fetch and show 20 branches at a time and with a click on next it will fetch the next 20 and so on can you suggest a suitable widget that can be used to achieve this Thanks in advance
asked
2 answers
0

If I recall correctly this is what the data grid does if source is set to database. It retrieves the amount of records which need to be shown according to the maximum amount setting in the grid. If you click on the next button in the pagination, a new call to the database is done to retrieve the next set of records according to this threshold.

answered
0

 

yes, agree. but in our case, the data source is a microflow that calls REST service to get the data. so I want to get and load the first 10 branches and on click to next, it should get the next 10 and so on.

answered