Believe the ui:repeat tag uses the standard JSF data model classes, none of which includes
a Set wrapper, unfortunately.
Guess the best bet maybe to use the ui:repeat tag with a customized facelet function to
convert the set to Object[]
e.g.
<ui:repeat value="#{fn:toArray(setCollection)}" var="each">
...
</ui:repeat>
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4008642#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...