2012-08-22 106 views
2

我想在一個表分頁旁邊加上幾個下拉過濾器。我使用的tablesorter插件即,要的tablesorter排序,的tablesorter-過濾器或過濾器小工具來過濾和分頁此的tablesorter尋呼機。的tablesorter過濾器窗口小部件,的tablesorter過濾器和分頁問題

當我使用過濾器widget作爲例子在filter widget example page,它過濾了分頁數據和尋呼不更新則只有當前頁面。

當我使用這個jquery-tablesorter-filter location的tablesorter-filter,如同一個鏈接的例子中所解釋的,分頁工作正常,但是我不能使用下拉菜單來選擇過濾選項。

有誰知道什麼解決辦法? (我這時需要使用這些插件的tablesorter不幸的是這樣嘗試其他plugings是不適合我的選擇..)

+0

此問題應該在tablesorter版本2.4中解決...即將推出! – Mottie

回答

1

的tablesorter 2.4版本已經上線。退房的尋呼機插件和過濾器部件協同工作的this demo。只要確保尋呼機插件選項removeRows設置爲false:

$("table") 
    .tablesorter() 
    .tablesorterPager({ 
    // target the pager markup 
    container: $(".pager"), 

    // remove rows from the table to speed up the sort of large tables. 
    // setting this to false, only hides the non-visible rows; 
    // needed if you plan to add/remove rows with the pager enabled. 
    removeRows: false, 
    }); 
相關問題