c:forEach is not iterating list from dataTable list?
843844Mar 19 2008 — edited Mar 19 2008dataTable code in xhtml file:
<h:dataTable id="dataTable" var="deal" value="#{myBean.arrays}">
<h:column>
<f:facet name="header">
<h:outputText value="Car"></h:outputText>
</h:column>
</f:facet>
<c:forEach items="#{deal.yields}" var="fan">
<h:column>
<f:facet name="header">
<h:outputText value="#{fan.name}" />
</f:facet>
</h:column>
</c:forEach>
</h:dataTable>
any one help me how to iterate list of element from the datatable list. help me.......