Hi,
I have a JSF application with several major components and a component tree under each.
On a certain event (Value change) I would like to reRender the entire component tree for one of those components.
For example: can I rerender components 1,2 and 3 in one shot here:
<h:panelgroup id="1">
<h:panelgroup id="2">
<h:panelgroup id="3">
<h:panelgroup/>
<h:panelgroup/>
<h:panelgroup/>
<h:commandButton rerender="1*"> <--- Made up code.
Is that possible?
Another Idea - Can I reRender with wildcards? (I.E - ReRender all components who's ID's begin or contain: "UpdateMe")
Thanks!