I am trying to implement a checkbox header for selecting all richFaces dataTable rows. setSelction is called but selection.size = 0; the backing bean is an EntityHome from seam 2.2.2 Any idea why selected rows are not set into selection?
Thanks
<h:form styleClass="association" id="heavyChainsChildren">
<rich:extendedDataTable
onRowMouseOver="this.style.backgroundColor='#F1F1F1'"
onRowMouseOut="this.style.backgroundColor='#{a4jSkin.tableBackgroundColor}'"
value="#{myEntityHome.myData}"
selectionMode="multi"
selection="#{myEntityHome.selection}"
var="entry"
rendered="#{not empty myEntityHome.myData}"
rowClasses="rvgRowOne,rvgRowTwo"
id="myDataTable">
<rich:column align="center" width="150px" sortable="false">
<f:facet name="header">
<h:panelGroup style="width:150px;" layout="block">
<script type="text/javascript">
//<![CDATA[
function checkAllCheckboxesInTable(inputId, state) {
var commonIdPart = inputId.substr(0, inputId.lastIndexOf(':'));
var tableId = commonIdPart + ':tu'
var tableElement = document.getElementById(tableId);
var inputs = tableElement.getElementsByTagName('input');
for (var i = 0; i <= inputs.length; i++) {
var input = inputs[i];
if (input.getAttribute('type') == 'checkbox' && state) {
input.setAttribute('checked', state);
} else {
input.removeAttribute('checked');
}
}
}
//]]>
</script>
<h:selectBooleanCheckbox id="checkAll" title="#{bundle.CHECK_ALL}" onclick="checkAllCheckboxesInTable(this.id, this.checked);">
<a:support event="onchange" reRender="myDataTable"
/>
</h:selectBooleanCheckbox>
<h:outputText value="#{bundle.IDENTITY_CHECKBOX_SELECT_ALL}"/>
</h:panelGroup>
</f:facet>
<h:selectBooleanCheckbox id="checkEntry" value="#{entry.selected}" disabled="false"/>
</rich:column>
bean:
@Name("myEntityHome")
public class MyEntityHome extends EntityHome<MyEntity> {
private static final Logger log = LoggerFactory.getLogger(MyEntityHome.class);
private SimpleSelection selection;
public SimpleSelection getSelection() {
log.info("getSelection called ....");
return selection;
}
public void setSelection(SimpleSelection selection) {
log.info("setSelection called ...");
this.selection = selection;
}
You can take advantage of this page.There are more examples richfaces datatable Download war file and import your local workspace.
http://balusc.omnifaces.org/2006/06/using-datatables.html#DownloadWAR
You can do test when you run project in eclipse java platform you can call this url as your local port number. If you don't have java platform you can decompile war file and take neccessary file and crud.jsp
http://localhost:8083/UsingDatatables/crud/crud.jsf
You should look at MyCrudBean.java and crud.jsp files. These codes will handle your problem.
MyCrudBean:
crud.jsp