YUI paginator infinity记录在表中

时间:2010-12-14 13:12:30

标签: pagination yui

我正在使用YUI来显示数据。

此行用于设置每页记录数:

rowsPerPageOptions : [ 10, 25, 50, 100 ]

是否有能力设置无穷大的记录数?

2 个答案:

答案 0 :(得分: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' }],

答案 1 :(得分:0)

尝试[20,50,100,250,500,1000,'all']