Hi,
I'm using myfaces 1.1.1
Using a <t:datatable> and <t:columns>, I'd like to iterate through row objects that contain list of column objects. The <t:columns> docs say:
<t:datatable value="#{rows}" var="row">
<t:columns value="#{cols}" var="col">
<f:facet name="header" value="#{col.name}"/>
<h:outputText value="#{row.colValue}"/>
</t:columns>
</t:datatable>
But what I'd like to do is:
<t:datatable value="#{rows}" var="row">
<t:columns value="#{row.cols}" var="col">
<f:facet name="header" value="#{col.name}"/>
<h:outputText value="#{col.value}"/>
</t:columns>
</t:datatable>
This doesn't seem to work. Would this work in the latest version of myfaces? Am I doing something wrong?
I searched the archives, and found something related, but this seems pretty involved for what I thought we be something straightforward.
http://marc2.theaimsgroup.com/?l=myfaces-user&m=114419934911732&w=2

