[jboss-user] [JBoss Seam] - Set and @DataModel : patch for SetDataModel ?

mustaghattack do-not-reply at jboss.com
Tue Jul 17 10:54:44 EDT 2007


@DataModel doesn't work with Set for me. I'm using Seam 1.2.1 GA with Sun JSF Impl. I've been looking in SetDataModel and I found this :


  |    @Override
  |    public Object getWrappedData()
  |    {
  |       return set;
  |    }
  | 

But set is not supported by JSF so I changed it to the converted List


  |    @Override
  |    public Object getWrappedData()
  |    {
  |       return entries;
  |    }
  | 

and it works fine.

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065037#4065037

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065037



More information about the jboss-user mailing list