Is it possible to update child components of a composite component just by specifying the parent composite ID? E.g. if I have:
<composite:interface>
<composite:attribute name="value" type="..." required="true"/>
</composite:interface>
<composite:implementation>
<p:treeTable id="main-tree" ...>
...
</p:treeTable>
</composite:implementation>
and to use it somehow like this:
<my:comp id="composite-component" />
...
<p:ajax update="composite-component" />
Is that possible? Right now the only way I see is to specify the child component ID explicitly:
<p:ajax update="composite-component:main-tree" />