Answers for "datatables disable search and pagination"

0

datatables remove pagination

// set paging parameter in false on object configuration
// "paging" : false

$(document).ready(function() {
    $('#example').DataTable( {
        "paging":   false,
        "ordering": false,
        "info":     false
    } );
} );
Posted by: Guest on August-27-2021
1

datatable disable searching

$('table').dataTable({searching: false, paging: false, info: false});
Posted by: Guest on October-21-2021

Code answers related to "datatables disable search and pagination"

Code answers related to "Javascript"

Browse Popular Code Answers by Language