Primefaces数据表:多个选择列表在另一个列表中

时间:2016-11-10 10:36:14

标签: jsf primefaces datatable selection

我有一个问题,如何在一个列表中映射数据表多个selecion,该列表是另一个列表的元素:

<p:dataTable id="subDataTable#{index}" value="#{objectBean.subDataModels.get(index)}"
    selection="#{objectBean.selectedLists.get(index)}" var="subRowTable"
    rowKey="#{subRowTable.primaryKeyObj.toString()}">

index是一个int变量,在我的objectBean

private List<List<Object>>  subDataModels; // and getter, setter

private List<List<Object>>  selectedLists; // and getter, setter

我收到了错误:

javax.faces.FacesException: Multiple selection reference must be an Array or a List for datatable

我需要针对此案例或相关主题的解决方案。 谢谢你的帮助。

0 个答案:

没有答案