The best way to illustrate what i'm trying to do is just give an example:
<h:form prependid="false" >
<h:panelGroup id="layer1">
<ui:repeat>
<h:panelGroup id="layer2>
<ui:repeat>
<h:panelGroup id="layer3">
<h:commandButton>
<f:ajax render="layer2" execute="@form" />
</h:commandButton>
</h:panelGroup>
</ui:repeat>
</h:panelGroup>
</ui:repeat>
</h:panelGroup>
</h:form>
When pressing the h:commandButton
in the example above I get an exception from JSF saying that the ID layer2
does not exists.
How can I do this correctly?
Thanks!