我在引用和显示复合组件的子级时遇到问题,如下所示:
<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}
列出组件的子级,但我不知道如何在复合组件的特定位置渲染它们。有什么想法或解决办法吗?
<composite:insertChildren>
将发挥作用。