Title: t:columns and iterating through row objects that contain list of column objects.

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




If you are not an intended recipient of this e-mail, please notify the sender, delete it and do not read, act upon, print, disclose, copy, retain or redistribute it. Click here for important additional terms relating to this e-mail.     http://www.ml.com/email_terms/

Reply via email to