我正在使用具有多个选择和分页的数据表,当我选择一行并转到另一页然后返回页面时,我选择的行不再被选中。我正在使用primefaces 3.5,mojarra,jboss 7.1,我的bean是viewScoped。以下是我的代码:
<p:dataTable id="boxList" var="box" value="#{protocolBean.boxModel}" paginator="true" rows="10" paginatorPosition="bottom"
selection="#{protocolBean.selectedBoxes}">
<f:facet name="header">
#{label['boxes']}
</f:facet>
<p:column selectionMode="multiple" style="width:4%" />
<p:column>
<h:outputText value="#{box.code}"/>
</p:column>
<p:column filterBy="#{box.selected}" filterOptions="#{protocolBean.selectedOptions}" filterMatchMode="exact">
<h:outputText value="#{box.selected}"/>
</p:column>
</p:dataTable>
型号:
public class BoxModel extends ListDataModel<Box> implements SelectableDataModel<Box> {
public BoxModel() {
}
public BoxModel(List<Box> boxes) {
super(boxes);
}
@Override
public Object getRowKey(Box box) {
return box.getId();
}
@SuppressWarnings("unchecked")
@Override
public Box getRowData(String rowKey) {
List<Box> boxes = (List<Box>) getWrappedData();
for(Box b : boxes) {
if(b.getId().equals(rowKey))
return b;
}
return null;
}
}
答案 0 :(得分:0)
我发现了正在发生的事情,问题在于我的模型类,在方法getRowData中我将long(b.getId)与String(rowKey)进行比较,这样方法总是返回null并且永远不会知道谁是地选择。