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

[665 byte] By [RDAa] at [2007-11-27 6:37:53]
# 1
The changes are reflected in the same list behind #{backing.warnings}.
BalusCa at 2007-7-12 18:06:21 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Thanks!The problem was the submit button was outside the table form.
RDAa at 2007-7-12 18:06:21 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...