我编写了一个扩展UIComponentBase
的自定义标记。
它在encodeBegin
方法中添加多个子组件(UIComponent
)。
出于布局目的,我想将此子组件嵌套在h:panelGrid
中,
但是标签在这里碍事。
ExampleTag.java
private ExampleTag extends UIComponentBase {
public void encodeBegin(FacesContext context) throws IOException {
getChildren().add(new HtmlLabel());
getChildren().add(new HtmlOutputText();
}
}
ExampleOutput.xhtml
<html>
<h:panelGrid columns="2">
<foo:exampleTag />
<foo:exampleTag />
</h:panelGrid>
</html>
生成的输出将在同一单元格中具有HtmlLabel
和HtmlOutput
组件,
但我想将它们放在一排中,即两个单元格。
-
h:panelGrid
只控制自己的子项(而不是其子项的子项)的布局 - 每个
<foo:exampleTag />
创建一个复合控件(具有自己的子控件)
如果要向h:panelGrid
添加多个控件,请使用其他模板机制之一。
例如,此h:panelGrid
使用ui:include
:
<h:panelGrid columns="2">
<ui:include src="gridme.xhtml">
<ui:param name="foo" value="Hello,"/>
<ui:param name="bar" value="World!"/>
</ui:include>
<ui:include src="gridme.xhtml">
<ui:param name="foo" value="Hello,"/>
<ui:param name="bar" value="Nurse!"/>
</ui:include>
</h:panelGrid>
包含的合成文件:
<!-- gridme.xhtml -->
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html">
<h:outputText value="#{foo}" />
<h:outputText value="#{bar}" />
</ui:composition>
视图输出的子集:
<table>
<tbody>
<tr>
<td>Hello,</td>
<td>World!</td>
</tr>
<tr>
<td>Hello,</td>
<td>Nurse!</td>
</tr>
</tbody>
</table>
请注意上述实现 - 不能在 gridme.xhtml
中的任何内容上显式设置 ID,因为没有复合控件,因此没有NamespaceContainer
来确保子项具有唯一的命名空间。
组件不是标记。
public void encodeBegin(FacesContext context) throws IOException {
getChildren().add(new HtmlLabel());
getChildren().add(new HtmlOutputText();
}
这不是生成复合控件的可接受方法。如果这样做,则每次呈现组件时都会向组件添加新控件。您也不应该在构造函数中执行此操作;这也会导致问题。没有在控件中添加子控件的好方法;它应该由视图(见上文)或标签在外部完成。