i need implement a RowClick in JSF DataTable like primefaces and richfaces, but i can't use this libraries. This is my datatable, inside a composite component:
<h:dataTable var="bean"
value="#{cc.attrs.managedBean.beans}"
id="#{cc.attrs.idDataTable}"
styleClass="display responsive nowrap table table-bordered table-hover dataTable table-striped dataTableJquery">
<h:column rendered="#{cc.attrs.showSelectAll}"
headerClass="checkboxMarkAll">
<f:facet name="header">
<h:selectBooleanCheckbox
title="Clique para marcar/desmarcar todos"
value="#{cc.attrs.managedBean.selectedAll}"
valueChangeListener="#{cc.attrs.managedBean.selectAll}">
<f:ajax execute="@this" render="@form"/>
</h:selectBooleanCheckbox>
</f:facet>
<h:selectBooleanCheckbox value="#{bean.selected}">
<f:ajax execute="@this" render="@form"/>
</h:selectBooleanCheckbox>
</h:column>
<composite:insertChildren/>
<h:column headerClass="not-desktop"/>
</h:dataTable>
I'm trying to think how can i implement a rowClick to all columns. DO you guys have some ideia ?