prime faces的分页器不起作用

时间:2011-04-02 03:17:40

标签: datatable pagination primefaces

我使用 prime faces 2.2.1,firefox 4.0 。下面的代码使用paginator呈现数据表。但是这个分页器不起作用。如果我删除代码 ,则可以使用。但他们不能满足我的要求。那么如何在不删除multiple属性的情况下使用paginator?

<h:body>        
        <h:form id="dataList">                
                <p:dataTable id="originList" var="doModule" cache="true" lazy="false" paginator="true" rows="10" 
                paginatorTemplate="{CurrentPageReport}  {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
                rowsPerPageTemplate="5,10,15" value="#{allTabManager.applyTab.applyDisplay.moduleList}"  paginatorPosition="bottom" > 
                        <p:column selectionMode="multiple" />
                        <p:column headerText="displayNo" >
                                <h:outputText value="#{doModule.ColIndex.value}" />
                        </p:column>
                </p:dataTable>
        </h:form>
</h:body>

1 个答案:

答案 0 :(得分:1)

我忘记了p:datatable。

的选择属性
<p:dataTable id="originList" var="doModule" cache="true" lazy="false" paginator="true" rows="10" 
                    paginatorTemplate="{CurrentPageReport}  {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
                    rowsPerPageTemplate="5,10,15" value="#{allTabManager.applyTab.applyDisplay.moduleList}"  paginatorPosition="bottom"
                    selection="#{allTabManager.applyTab.applyDisplay.selections}" >