I have problem referencing and displaying composite component's childs like that:

<xyz:mycomponent>
  <h:outputText value="some text"/>
  <h:outputText value="another text"/>
</xyz:mycomponent>

Where mycomponent is defined like that:

<composite:implementation>
  <!-- some tags here -->
  <h:paneGroup>
    <!-- I want component's childs (two outputText's) to be rendered here -->
  </h:paneGroup>
</composite:implementation>

I can list component's childs via #{cc.children} but I have no idea how to render them at a specific place of composite component. Any ideas or workarounds?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

<composite:insertChildren> will do the trick.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.