Hello! I'm using a collectionView in a mobile application to display products we want to sell. However, I'm encountering an issue due to having more than 1,500 products to display in this collectionView, which results in a delay of 15 seconds. I've noticed that server-side pagination can be utilized with this component, but upon enabling it, I'm unable to find options to configure the 'previous' and 'next' buttons. Additionally, it seems impossible to implement pagination within the database configuration itself.
The JSON that Victoria sent is for a Web App, what I need is for a Mobile App. I could even use her idea and create pagination from scratch, but the pageInput component she uses is not available in the Mobile App.
Note: I recommend using a limit/offset number that allows the screen to show all of the records of this "limited" query, plus two buttons below, for a smooth transition between pages. Too small of a number will make the component change sizes while the query is running, too big of a number will require your users to scroll to get to the navigation buttons. The right number will depend on the size of the repeatable.
Update: We can use the selectedPageIndex property of the Collection View to set server-side pagination without the need of a State variable. Although there is no event handler for 'Change page' on this component, if we set this query to run automatically, it will run every time the value changes: