Primefaces显示页码的paginator模板

时间:2015-09-22 03:27:46

标签: jsf primefaces

在以下代码中,显示数字的paginator模板是(1到10)。我想设置默认显示数字(1到5)。

<p:dataGrid  var="faq"  value="#{faqBean.faqList}"
                    paginatorPosition="bottom" paginator="true" 
                    rows="1" lazy="true" columns="1" layout="grid" 
                    paginatorTemplate="{CurrentPageReport}  {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
                    rowsPerPageTemplate="1,5,10,30,60"
                    rowIndexVar="index">

1 个答案:

答案 0 :(得分:0)

我不确定您的问题,但如果您希望每页显示5行,则必须将rows=5改为rows=1。如果您希望用户可以更改每页的行数,请使用back bean属性,例如rows=#{youBean.yourProperty}