I\'m using JSF 2.0.
Is there a way to make this code work?
The <ui:include>
runs during view build time (to generate the JSF component tree) while the <ui:repeat>
runs during view render time (to generate the HTML output), which is after the view build time. Use <c:forEach>
instead of <ui:repeat>
, it runs during view build time as well.