How can i jump specific page based on my providing data using jqery database version 1.9.4?
How can i jump specific page based on my providing data using jqery database version 1.9.4?
PGNasir
Posts: 1Questions: 1Answers: 0
This is example it is vesion 1.12.1
var table = $('#example').DataTable(); var pos = table.column(4, {order:'current'}).data().indexOf( '2010/02/12' ); if ( pos >= 0 ) { var page = Math.floor( pos / table.page.info().length ); table.page( page ).draw( false ); }But It didn't working when i used version jqery database version 1.9.4.
I want to solved it only using version jqery database version 1.9.4.
Answers
1.9.4 is from September 2012 - 10 years ago. It is no longer supported I'm afraid. 1.12.1 is the current release.
It is probably possible to do using the legacy API but as I say, that is no longer supported and I'd recommend updating to the latest version.
Allan