我有一个问题,如何在一个列表中映射数据表多个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
我需要针对此案例或相关主题的解决方案。 谢谢你的帮助。