读取取消选择数据表primefaces中复选框的值

时间:2012-01-13 13:12:21

标签: primefaces

我有一个带有复选框的数据表供选择。来自db的值在数据表中显示为已选中。当通过单击复选框进行新选择时,我可以从数组中读取后端中的值,但是当我取消选中复选框(取消选择该行)时,该数组仍包含选中的复选框信息。我希望数组在提交时只检查复选框信息(这样我就可以从db中删除未经检查的复选框)。这是代码 -

<p:dataTable id="stdList"
                             value="#{stdController.students}"
                             selection="#{stdController.selectedStudents}" 
                             var="item"
                             rows="10"
                             rowKey="#{item.id}"
                             >
                    <p:column selectionMode="multiple" />
                    <p:column
                        sortBy="#{item.name}" 
                        filterBy="#{item.name}"
                        filterStyle="display: none;"
                        >
                        <f:facet name="header">
                            <h:outputText value="#{prop.name}"/>
                        </f:facet>
                        <h:outputText value="#{item.name}"/>
                    </p:column>
                </p:dataTable>

我的支持bean是 -

public Topics[] getSelectedStudents() {
    Students[] returnStudents = new Students[getSelectedStudentsAsList().size()]; // //this gets the list from db and creates the array here.
    getSelectedStudentsAsList().toArray(returnStudents);
    return returnStudents;
}

public void setSelectedStudents(Students[] selectedStudents) {
    getSelected().setStudents(new HashSet<Topics>(Arrays.asList(selectedStudents)));
 }

非常感谢任何帮助。 TIA。

1 个答案:

答案 0 :(得分:0)

JQuery中存在一个错误,它会影响PrimeFaces并且仍然没有修复。 检查一下:http://code.google.com/p/primefaces/issues/detail?id=3205 您可以使用字符串作为行标识符作为解决方法(例如,item.name)。