Hello. I've upgraded to DataTables-1.10.4. I noticed Next button for pagination for my AJAX tables was not working. My pagination is setup for 50 records per page. When I clicked the Next button on page 1, the 'Showing ...' message was changed to:
Showing 0,501 to 173 of 173 entries
Subsequent click of Next button would not do anything. All other buttons for pagination seem to work.
I tracked the issue to _fnPageChange method of jquery.dataTables.js (roughly line 3471). This is the original code:
var
start = settings._iDisplayStart,
len = settings._iDisplayLength,
records = settings.fnRecordsDisplay();
I changed it to:
var
start = parseInt(settings._iDisplayStart),
len = parseInt(settings._iDisplayLength),
records = settings.fnRecordsDisplay();
After adding parseInt() for start and len, the Next button pagination works.
Hopfully this will help someone else.
Thanks
Tom