How to page in listview

0
I would like to know how to page in a listview. The data source was imported into microflow, and data grid 2 is difficult to use on the page. So I want to add paging functionality to this view using a listview. What should I do?   For reference, this page is the page set to select using in the reference selector.  
asked
1 answers
2

Hi Bosung,

     To implement custom paging functionality, Add Pagination entity for paging and generalize with system paging as shown below

image.png

Then add a snippet called paging as shown below

image.png 

Then add a dataview in the page which you want to add pagination and create Pagination as parameter, Inside the dataview call the list with microflow, In that microflow retrieve add offset and limit to display how many datas needs to display as shoen below

image.pngIn the paging snippet add nanoflow for buttons as shown below

image.pngTo increase the page number add Pagenumber + 1 else to decrease the page add pagenumber - 1, else to navigate to first page set pagenumber to 1

answered