Answers for "disable show entries in datatable"

0

sorting disable in datatable bootstrap

$('#id-of-my-table').DataTable({
    "columnDefs": [
        { "orderable": false, "targets": [0, 4, 5, 6] },
        { "orderable": true, "targets": [1, 2, 3] }
    ]
});
Posted by: Guest on August-09-2021
0

datatable remove show

$(document).ready(function() {
	$('#example').dataTable({
    	"bLengthChange": false
});
Posted by: Guest on February-23-2022

Code answers related to "disable show entries in datatable"

Code answers related to "Javascript"

Browse Popular Code Answers by Language