Reputation: 488
I have a little problem . I want to remove auto pagination from my datatable. I have tried many way to remove it.
$('#dataTable').DataTable({
"paging": false or "bPaginate": false
});
in both cases it doesn't remove pagination :/
Upvotes: 0
Views: 6019
Reputation: 126
This how I remove everything from the bottom:
$("#dataTable").DataTable( {
"bInfo" : false,
"paging": false,
"ordering": false,
"searching": false
});
Upvotes: 1
Reputation: 1740
Try this:
$('#dataTable').DataTable( {
"paging": false,
"ordering": false,
"info": false
});
or https://datatables.net/examples/basic_init/filter_only.html
Upvotes: 0