The page event in the following code snippet fires before the paging event has actually occurred.
$('#dataTableID').live('page', function () { logWhateverShowsInCell2(); });
Is there a way to attach an event listener for after the paging?
FWIW, "fnDrawCallback" : logWhateverShowsInCell2(), ... only fires for the initial loading of the dataTable, not on subsequent events like paging, sorting, filtering, etc...
$('#dataTableID').live('page', function () { logWhateverShowsInCell2(); });
Is there a way to attach an event listener for after the paging?
FWIW, "fnDrawCallback" : logWhateverShowsInCell2(), ... only fires for the initial loading of the dataTable, not on subsequent events like paging, sorting, filtering, etc...