5 Replies Latest reply on Aug 20, 2012 11:40 AM by nt2005

    a4j:repeat and objects problem - output.data.columns .. to fast converted to "string"

    nt2005

      Hello Community,

       

      I use something like this:

      <a4j:repeat var="column" value="#{output.data.columns}">
           <th>#{column.header}</th>
      </a4j:repeat>
      

       

      What I get is this error:

      value="#{output.data.columns}": The class 'java.lang.String' does not have the property 'columns'."
      

       

      I think the value property I get is somethink like that:

      org.foo.gui.MyTable@18c75f4.columns

       

      When I use #{output.data.columns} without a4j:repeat - I get the correct object:

      org.foo.gui.MyColumn@21f73a2


      In Richfaces 3.3.3 it works fine but now in 4.2 not.

       

      Any idea?