0

テーブルを動的に生成しましたが、100行になることもあれば、300行になることもあります。tablesorterpagerをテーブルに配置したいと思います。

ユーザーがfindを押してテーブルを再作成したら、ページャーアクションのバインドを解除または削除し、データを読み込んでから、プラグインを再度バインドします。tablesorterpagerアクションでbind-unbind操作を実行する方法に関するアイデア。

4

2 に答える 2

0

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.

于 2012-07-28T13:42:45.940 に答える
0

コンストラクターが問題を解決する前に、これらをポケットベルプラグインに入れました

                 $(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;
                });
于 2012-08-07T20:33:52.733 に答える