pageLength and server-side
pageLength and server-side
Hello,
I've a question about the possibilité of a fonctionnality in Datables (which is something doable with Angular) mixing pagination and server-side request.
In Angular, it's possible to paginate a table per 10 rows but requesting the server every 50 rows. I mean than a request to the server ask for 50 rows, but on the table only the 10 first rows are displayed on the page, then if i click on 'Next', the 10 next rows form the request are displayed, .... And then i displayed the 50 rows (by clicking 4 times on 'Next'), the next click on 'Next' will request to more 50 rows to the server.
Is it something possible in Datatables??
Thanks
Answers
Maybe the pipelining example is what you are looking for:
https://datatables.net/examples/server_side/pipeline.html
Kevin