The pagination's Next button doesn't disable
The pagination's Next button doesn't disable
CamiloFranco
Posts: 2Questions: 1Answers: 0
I made a paged table that brings me a certain amount of data and as I advance it brings me more through a server side process but the Next button does not work.
This question has an accepted answers - jump to answer
Answers
function tableInit(){
You have
serverSide
enabled, so the table only displays what is sent from the server. This works as expected here.Your problem is likely that the server script is sending the same data - you can confirm that by opening the browser's developer tools and watching the network tab while you press the table's Next button.
If nothing is being requested/sent, then that would suggest the data in the previous response sent incorrect table numbers, in that case, see the protocol here. Also see examples here.
Cheers,
Colin