在数据表上,我启用了多项选择复选框。并且有提交按钮,在 actionlistener 上,我将重复记录作为选定项目。
例如,在第一页上是 5 条记录,记录总数为 10,然后第一页记录被复制两次并产生 10 条记录,应限制为 5 条记录。
以下是代码片段:
<p:dataTable id="sampleDataTable" var="_task" value="#{myBean.lazyModelTasks}"
styleClass="dataTable" paginator="true" paginatorTemplate="{PageLinks}"
paginatorPosition="bottom" rows="5" widgetVar="dataTab"
paginatorAlwaysVisible="true" rowIndexVar="rowIndex"
lazy="true" selection="#{myBean.selectedItems}"
emptyMessage="No Search Results found !">
<p:column selectionMode="multiple" style="width:15px;">
<f:facet name="header">
<h:outputText value="Sno" />
</f:facet>
</p:column>
</p:dataTable>
<p:commandButton id="submit" value="Select" update="#{rerenderid}"
actionListener="#{myBean.addSelectedItems}" oncomplete="#{onlinkclick}">
<f:attribute name="selectedItems" value="#{myBean.selectedItems}"/>
</p:commandButton>
托管 Bean 代码:
public void addExternalRecipients(ActionEvent event) {
//THIS GIVES ME 10 RECORDS, THOUGH THERE ARE ONLY 5 RECORDS AT THAT INSTANCE
this.selectedItems = (Address[])
event.getComponent().getAttributes().get("selectedItems");
}