How to view a dataTable from a bean?
Hi,
I have this data table in a jsp:
<h:dataTable id="idWarnings" value="#{backing.warnings}" var="line">
<h:column>
<h:selectBooleanCheckbox value="#{line.bolFirst}"
onclick="javascript: cargarMatriz();" />
</h:column>
<h:column>
<h:outputText value="#{line.strFirst}" />
</h:column>
</h:dataTable>
I want to get the datatable in the backing bean. Does anybody know how to do it?
Thanks

