Reputation: 196761
i have a page that displays large datasets into html tables. how can i add paging without having to refresh the whole page each time i change pages
Upvotes: 1
Views: 1028
Reputation: 41858
Basically you just need a page for your form submission, and given the search criteria and a page number, it just returns the next page, preferably as a json result, so you can just change the cells in the current table, which will be faster to render.
It appears this is an example of what you want: http://encosia.com/2008/08/20/easily-build-powerful-client-side-ajax-paging-using-jquery/
Upvotes: 1