0 Replies Latest reply on Jul 17, 2007 10:54 AM by mustaghattack

    Set and @DataModel : patch for SetDataModel ?

    mustaghattack

      @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.