Is it possible to hide the Show Entries dropdown but keep the Search box in DataTable? I want to always display 10 rows with pagination at the bottom along with search box but d
For DataTables <=1.9, @perpo's answer
$('#example').dataTable({ "bLengthChange": false });
works fine, but for 1.10+ try this:
$('#example').dataTable({ "dom": 'ftipr' });
where we have left out l the "length changing input control"
l
1.9 Docs
1.10 Docs