Here the code, hope you can help me.
<f:metadata>
<f:viewParam name="id" value="#{edit.id}" required="true" requiredMessage="required" />
<f:event type="preRenderView" listener="#{edit.create}" />
</f:metadata>
.....
<c:forEach items="#{edit.elements}" var="element">
<ui:include src="/include/#{element}.xhtml" />
</c:forEach>
I absolutely need to include dynamic page because huge number of it unknown in advance... So the problem is that method create is called after getting the list of elements due to c:forEach lifecycle.
I also tried preValidate, postValidate and preRenderComponent event but nothing helps.
Thanks a lot; you are my heroes