2

我有一个简单的模板,其中定义了两个区域,工具栏和内容。工具栏区域有许多命令按钮,内容有字段。我的问题是:如何在两个 ui:define 之间使用单一表单?

我有示例代码:

<ui:composition template="/WEB-INF/templates/layout.xhtml">

    <ui:define name="toolbar">
        <p:commandButton id="saveButton" value="Save" ajax="false" action="#{...}" />
    </ui:define>

    <ui:define name="content">
        <h:form id="registerForm">
            <p:outputLabel for="name" value="Name"/>
            <p:inputText id="name" value="#{...}" required="true" />
            <p:message for="name"/>
         </h:form>
    </ui:define>

</ui:composition>

当 de saveButton 被触发时,应该提交 h:form registerForm。

有人有建议吗?

4

1 回答 1

0

我用 ui:decorator 解决了这个问题。像“子模板”一样使用 ui:decorator 可以将表单放在许多 ui:define 之间。我希望这会有所帮助。

模板装饰.xml

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets">

    <ui:define name="toolbar"></ui:define>

    <ui:define name="content"></ui:define>
</html>

注册.xhtml

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"

    <ui:composition template="/WEB-INF/templates/layout.xhtml">
        <ui:define name="content">
            <h:form id="registerForm">
                <ui:decorate template="/WEB-INF/templates/layout-decorator.xhtml">

                    <ui:define name="toolbar">
                        <p:commandButton id="saveButton" value="Save" ajax="false" action="#{...}" />
                    </ui:define>

                    <ui:define name="form">
                        <p:outputLabel for="name" value="Name"/>
                        <p:inputText id="name" value="#{...}" required="true" />
                        <p:message for="name"/>
                    </ui:define>
                </ui:decorate>
            </h:form>
        </ui:define>

    </ui:composition>
</html>

有关更多信息,请参阅:http ://docs.oracle.com/javaee/6/javaserverfaces/2.0/docs/pdldocs/facelets/ui/decorate.html

于 2013-06-07T17:16:27.030 回答