In a JSF2 framework I can't let the <c:forEach>
working.
For instance, if I use the following xhtml:
<c:forEach items="${testBackingBean.tabelle}" var="tabella">
forEach element:<h:outputLabel value="#{tabella}"/>
</c:forEach>
<ui:repeat value="#{testBackingBean.tabelle}" var="tabella">
repeat element:<h:outputLabel value="#{tabella}"/><br/>
</ui:repeat>
then, only the <ui:repeat>
's results are rendered in the HTML.
I really don't know why, but unluckly I have to use the <c:forEach>
becouse I need to iterate inside a primefaces element. (see c:forEach inside primefaces(e.g. p:panelgrid) inside ui:repeat)