Server side pagination in table

I want to use a pagination component for server side pagination.

3 Likes

Currently table component does not has the server side pagination functionality.

This is how it works:

You can fetch 100 records at a time and then set pagination to 10 and it will traverse locally.

To fetch more records from server you will be needed to create a custom pagination bu creating next and previous button or you can simply filter the results to narrow down the query.

3 Likes