テーブルを動的に生成しましたが、100行になることもあれば、300行になることもあります。tablesorterpagerをテーブルに配置したいと思います。
ユーザーがfindを押してテーブルを再作成したら、ページャーアクションのバインドを解除または削除し、データを読み込んでから、プラグインを再度バインドします。tablesorterpagerアクションでbind-unbind操作を実行する方法に関するアイデア。
テーブルを動的に生成しましたが、100行になることもあれば、300行になることもあります。tablesorterpagerをテーブルに配置したいと思います。
ユーザーがfindを押してテーブルを再作成したら、ページャーアクションのバインドを解除または削除し、データを読み込んでから、プラグインを再度バインドします。tablesorterpagerアクションでbind-unbind操作を実行する方法に関するアイデア。
I have a fork of tablesorter on Github. And the pager plugin has a method to enable, disable or completely destroy the pager plugin. Here is a demo.
Also, if it helps, there is another demo on how to use the pager plugin to use ajax data.
コンストラクターが問題を解決する前に、これらをポケットベルプラグインに入れました
$(config.cssNext,pager).unbind('click');
$(config.cssPrev,pager).unbind('click');
$(config.cssFirst,pager).unbind('click');
$(config.cssLast,pager).unbind('click');
「....pager.js」内のコンストラクター:
$(config.cssFirst,pager).click(function() {
moveToFirstPage(table);
return false;
});