JSF选中所有复选框

时间:2014-09-15 12:19:20

标签: javascript jsf

<h:dataTable id="merchantDataTable"
        value="#{merchantManagementBean.merchants}" first="0"
        rows="#{merchantManagementBean.rowsPerPage}" var="merchant"
        styleClass="dataTable"
        columnClasses="users-colMerchant, users-colMerchantDescr,  nostyle"
        rowClasses="oddRow, evenRow">
        <h:column>
            <f:facet name="header">
                <h:panelGrid columns="1">
                    <h:selectBooleanCheckbox />
                </h:panelGrid>
            </f:facet>
            <h:selectBooleanCheckbox value="#{merchant.selected}"/>
        </h:column>
</h:datatable>

是的,所以我有这个代码部分,我需要创建主要复选框以使它们全部检查我可以使用可能只有基于Javascript的解决方案,因为与bean的通信将转到服务器端。

1 个答案:

答案 0 :(得分:0)