Hello I'am having problems with updates, I have some composite component nested in few components and i want to update some of them, what is proper way ? Second can i update div?
Code example:
<div id="outer">
<p:commandButton id="button"/>
<div id="inner">
<h:form id="form">
<mycomponents:test whatToUpdate="form panel button outer label">//here problem
</h:form>
</div>
</div>
<div id="outer2">
<h:form id="form">
<p:panelGroup id="panel">
<p:label id="label" value="value"/>
</p:panelGroup>
</h:form>
</div>