Pagination in listviewer

Hi Guy,
any one has done pagination in listviewer? for example we got 20 list item in listviewer and i want it to be display fist 10 lists and the rest in second page.

1 Like

You need to split your list into two lists and then display the second list on the second page/screen.

If you use a data source for your list, you can just create a list on the fly from the data source and change the starting & ending row numbers to get different parts of the data source as a single list.

1 Like

@tatiang
thank you for your suggestion. i will try to implement as per suggest.