4

我在引用和显示复合组件的子组件时遇到问题:

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

wheremycomponent是这样定义的:

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

我可以通过列出组件的子组件,#{cc.children}但我不知道如何在复合组件的特定位置呈现它们。有什么想法或解决方法吗?

4

1 回答 1

7

<composite:insertChildren>会成功的。

于 2011-06-01T13:38:58.703 回答