Update customers.tpl

add length Menu  5, 10, 25, 50, 100 and All, as suggested by one of our member and also use 5 as default page length to make the page fit the screen when loaded
This commit is contained in:
Focuslinkstech 2024-04-13 18:19:09 +01:00
parent 425ed2362b
commit eff79df39a

View File

@ -106,7 +106,9 @@
$j(document).ready(function () { $j(document).ready(function () {
$j('#customerTable').DataTable({ $j('#customerTable').DataTable({
"pagingType": "full_numbers" "pagingType": "full_numbers",
"lengthMenu": [ [5, 10, 25, 50, 100, -1], [5, 10, 25, 50, 100, "All"] ],
"pageLength": 5
}); });
}); });
</script> </script>