nested <h:datatable>
hi
i want to display data of two tables in one table using <h:datatable>
when iam doing so.....only one table data is displayed ....but not another
<h:datatable ....id="table1".>
<h:column>
<f:facet name="header">
<h:outputText value="hhh">
</f:facet>
<h:outputText value="#{t.x}">
</h:column>
<h:column>
<h:dataTable ..... id="table2">
<h:column>
<f:facet name="header">
<h:outputText value="hhh">
</f:facet>
<h:outputText value="#{d.k}">
</h:column>
</h:dataTable>
</h:column>
</h:dataTable>
can anyone please tell me the right way of using it.

