Searching (Filtering) Within a Specific Page
Searching (Filtering) Within a Specific Page
I've created an implementation of server-side paging/sorting that works well for large datasets - it does the slicing of the data in the DAL itself query rather than bringing everything back over the wire. The problem is, datatables will set the page back to 1 when doing a search (because it thinks it's looking at all the data rather than a slice). Is there a good (easy?) way to preserve the current page (in other words, the iDisplayStart) when doing a search?
This discussion has been closed.
Replies
It is possible to do a standing redraw ( http://datatables.net/plug-ins/api#fnStandingRedraw ) the technique for which could be adapted, but I think you might run into a few problems with this approach.
Allan