I am using Datatables, and I get the data via AJAX (on my server side I have Rails).
Say that I want to share with another user, the page number 2 of one of the views that is using Datatables. Since the pagination is done with AJAX, there is no track of the page number in the URL, and therefore it can't be done.
How do you deal with pagination that is done via AJAX when you want to share a specific page (?page=1
) ?
Thanks