I found a bug in GroceryCrud when using DataTables.
The bug makes it not possible to click 'Next' and shows the following line wrong:
Displaying 1 to [b]010[/b] of 23 items
The line above should obviously be "10" and not "010".
File: 'assets\grocery_crud\themes\datatables\views\list_template.php'
Line:
var default_per_page = '<?php echo $default_per_page;?>';Cause: Datatables expects default_per_page to be a number and not a string
How to fix: Remove the single quotes
var default_per_page = <?php echo $default_per_page;?>;
You can check the bug out at:
http://www.grocerycr...yees_management