How to click the page numbers which are hide in the ellipses in datatable?
How to click the page numbers which are hide in the ellipses in datatable?
I have used the Jquery datatable for my project. In that too have the customized search contents and page number as it is when its previously processed i have used the page.info and get the page number and when loading the datatable after processing i'm the trigger('click') the page number with the help of the Jquery But when the page number is hide by the ellipses its not possible to click the page number is there any other way...????
I have used the statesave method too but because of using the customized filter i haven't used the statesave....
i have used the functions like
obj_table.fnPageChange(page,true);
(OR)
obj_table.page( page ).draw( true );
to set the current page.
before error: http://debug.datatables.net/aboyas
after error: http://debug.datatables.net/iyabuh
This question has an accepted answers - jump to answer
Answers
You want to show a page that is not shown in the pagination control? There is no option for that - only the numbers that are visible can be clicked. A new plug-in would need to be written if you want to be able to show the numbers that have been removed and be able to activate them.
Allan
How to change the current page/starting page in the datatable while displaying in jquery..
Use the
page()
method.Allan