How can I specify the number of rows to display on a single \"page\" when using DataTables\'s pagination feature?
Using lengthMenu may help too:
$(document).ready(function() { $('#example').DataTable( { "lengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]] } );
} );
https://datatables.net/examples/advanced_init/length_menu.html