Server Side Pagination Problem
Server Side Pagination Problem
Mechanic
Posts: 3Questions: 1Answers: 0
When using server side pagination if I go forward and back with the pagination control buttons stop going back to the endpoint after a few clicks. I tried waiting several seconds between clicks and the issue still happens. Does anyone have a fix?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
http://datatables.net/forums/discussion/12899/post-test-cases-when-asking-for-help-please-read#latest
It appears to work okay in this example. As noted by tangerine, please link to a test case so we can debug the issue.
Allan
Thanks, sorry it took so long I was on a road trip. Here is a link demonstrating the paging issue.
http://datatableexample.azurewebsites.net/Account/Login?ReturnUrl=%2F
The
draw
parameter being returned does not meet the requirements of server-side processing. If you review that documentation and change yourdraw
parameter it should work okay.Allan
Yes that was the solution to the problem, thanks for your help!