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>
javax.el.PropertyNotFoundException: /pages/meldung/klr_meldung_dlg.xhtml @232,93 value="#{row.strPlausiHinweis}": Property 'strPlausiHinweis' not found on type org.hibernate.collection.PersistentSet
Hello,
Yes, there's workaround. Use
new java.util.ArrayList(set)as value