How to add ice:selectManyCheckbox to a ice:dataTable?
问题 I have a <ice:dataTable> and I want to add a checkbox to each row. I tried to add a <ice:selectManyCheckbox> , but it shows an empty column and the checkboxes doesn't appear. <ice:selectManyCheckbox id="customTransChbx" partialSubmit="true"> <f:selectItems id="SlctLangItms" value="#{employee.s}" /> </ice:selectManyCheckbox> <ice:dataTable id="employeedatatable" value="#{employee.model}" var="emp" rows="5"> <ice:column> <ice:checkbox for="customTransChbx" index="#{emp.id}" rendered="true" /> <