Add support for server-side pagination to handle large datasets efficiently. This will allow the table to fetch only the required data for the current page from the server.
Tasks:
- Add an option to enable server-side pagination in the configuration.
- Define the API structure for paginated data (e.g., { data: [...], total: 100 }).
- Update the pagination logic to fetch data dynamically based on the current page and page size.
- Document how to configure the API to return paginated data.
- Write tests to validate server-side pagination functionality.
Add support for server-side pagination to handle large datasets efficiently. This will allow the table to fetch only the required data for the current page from the server.
Tasks: