Resul Rzaeeff
Resul Rzaeeff

Reputation: 488

Jquery DataTable remove pagination

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

Answers (2)

Vincent111
Vincent111

Reputation: 126

This how I remove everything from the bottom:

$("#dataTable").DataTable( {
    "bInfo" : false,
    "paging": false,
    "ordering": false,
    "searching": false
});

Upvotes: 1

kritikaTalwar
kritikaTalwar

Reputation: 1740

Try this:

$('#dataTable').DataTable( {
        "paging":   false,
        "ordering": false,
        "info":     false
    });

or https://datatables.net/examples/basic_init/filter_only.html

Upvotes: 0

Related Questions