Does fnPageChange have a callback?
Does fnPageChange have a callback?
fcastellanos
Posts: 1Questions: 0Answers: 0
I wan to know if 'fnPageChange' have a callback, I want to do something with the new data that will be loaded into the table.
Any hints?
Any hints?
This discussion has been closed.
Replies
Until then, have you tried using fnDrawCallback ? Or binding an event to the 'draw' customer event (you could use:
[code]
$(table).one('draw', function () {...} );
table.fnPageChange( ... );
[/code[
for example.
Allan