I have a problem with displaying and displaying child components of a composite component:
<xyz:mycomponent>
<h:outputText value="some text"/>
<h:outputText value="another text"/>
</xyz:mycomponent>
Where is mycomponentdefined as follows:
<composite:implementation>
<h:paneGroup>
</h:paneGroup>
</composite:implementation>
I can list the children of a component through #{cc.children}, but I don’t know how to make them in a specific place of a composite component. Any ideas or workarounds?
source
share