Hello,
You have to apply a patch to the tablesorter.pager plugin ...
add a updatePager() method to this plugin,
then call this method after the tablepager.update() call ...
Here is the new updatePager() tablepagersorter method:
- $(this).bind("updatePager",function(){
- var me = $(this);
- setTimeout(function(){
- me.trigger("appendCache");
- setPageSize(table,config.size);
- moveToFirstPage(table);
- },2);
- });
Hope this help ...
