It depends on which JSF view handler you use.  If you use facelets

e.g.
<ui:repeat value="#{events}" var="event">
  |    <h:outputText value="#{event.name}" />
  |    <ui:repeat value="#{event.games}" var="game">
  |       <h:outputText value="#{game.name}" />
  |    </ui:repeat>
  | </ui:repeat>

If you use JSP then look at h:datatable, c:foreach, t:dataList etc.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4003245#4003245

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4003245
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to