@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
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to