Hey Guys,
i have a little problem with the integration of the deepLink plugin into my existing table.
This is my original table
$(document).ready(function() {
var dataTable = $('#mytable').DataTable( {
"iDisplayLength": 30,
"pagingType": "full",
"ajax": "Database.txt",
} );
} );
Now my table looks like this.
$(document).ready( function () {
$('#mytable').DataTable( $.fn.dataTable.ext.deepLink( [
'search.search'
] )
);
});
So where do i have to place my settings, for example.
"iDisplayLength": 30, or
"pagingType": "full", or
"ajax": "Database.txt",
Does anyone know that ?
I know its a dumb question but i don't get it.
Thx Samu