does jsf allow to exclude the child section when rendering its parent?
ex:
<h:panelGroup id="parent">
<h:panelGroup id="child1">
</h:panelGroup>
<h:panelGroup id="child2">
</h:panelGroup>
</h:panelGroup>
reRender="parent"
I called parent to on reRender. How will I exlcude "child1"? I am thinking that I have 100 child sections and I need to render 1-99. So instead of declaring child1-99 in reRender, I will just exclude child100 in the reRender. Is it possible?