1 Reply Latest reply on Jan 16, 2009 3:05 PM by nbelaevski

    ScrollableDataTable bound to Set

    buttau

      Hello,

      I have a problem with a ScrollableDataTable in 3.3.0GA.

      Following code works with richfaces-api-3.3.0-20081026 but not with 3.3.0GA

      <rich:scrollableDataTable rowKeyVar="rkv" frozenColCount="1"
       height="120px" width="228px" var="row"
       value="#{backingBean.beans.Meldung.listePlausiHinweis}"
       sortMode="single">
      
       <rich:column width="180">
       <f:facet name="header"><h:outputText value="Fehler" /></f:facet>
       <h:outputText value="#{row.strPlausiHinweis}" title="#{row.strPlausiHinweis}"/>
       </rich:column>
       <rich:column width="20">
       <f:facet name="header"><h:outputText value="Art" /></f:facet>
       <h:outputText value="#{row.strTyp}" />
       </rich:column>
      </rich:scrollableDataTable>
      


      There is a ScrollableDataTable with a value bound to a Set. In 3.3.0GA it produces an Error:

      javax.el.PropertyNotFoundException: /pages/meldung/klr_meldung_dlg.xhtml @232,93 value="#{row.strPlausiHinweis}": Property 'strPlausiHinweis' not found on type org.hibernate.collection.PersistentSet


      Can't 3.3.0GA work with Sets? Is there a workaround?