JSF2:如何在组件内的特定位置渲染复合组件的子项?

时间:2011-06-01 13:33:12

标签: java jsf jsf-2 composite-component

我有问题引用和显示复合组件的子项:

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

mycomponent的定义如下:

<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}列出组件的子项,但我不知道如何在复合组件的特定位置呈现它们。任何想法或解决方法?

1 个答案:

答案 0 :(得分:6)

<composite:insertChildren>可以解决问题。