2010-12-14 57 views
0

我使用YUI顯示數據。表YUI分頁器無窮大記錄

該行用於每頁記錄集數:

rowsPerPageOptions : [ 10, 25, 50, 100 ] 

是否有設置的記錄數量無限的能力?

回答

0

儘量只[20,50,100,250,500,1000, '全部']

0

使用自定義頁面計數名稱和max int解決。

rowsPerPageOptions  : [ 
            { value : 20, text : '20' }, 
            { value : 50, text : '50' }, 
            { value : 100, text : '100' }, 
            { value : 250, text : '250' }, 
            { value : 500, text : '500' }, 
            { value : 1000, text : '1000' }, 
            { value : 9007199254740992, text : 'All' }],