I am facing problem when trying to implement server side pagination

I am facing problem when trying to implement server side pagination

lukeangularlukeangular Posts: 1Questions: 0Answers: 0

**# Need Help

**

I am facing problem when trying to implement server side pagination . I am calling public API , but the problem is data retrieves without pagination in once. I want data should be retrieved in chunks of 5, and when click next button it should again get 5 records in the response




Replies

  • kthorngrenkthorngren Posts: 20,264Questions: 26Answers: 4,764
    edited March 2022

    Server Side Processing is a client and server solution. The server is expected to support the SSP protocol and to return only the rows for the page being displayed. If you are using a public API then enabling server side processing is probably not going to work. You will need to look at the API to see if it supports paging then, if it does, setup your own paging buttons and click events to send the proper information to the API to perform paging.

    Kevin

Sign In or Register to comment.