15

このようなレイアウトを作成する必要がありますが、次のように、すべてのコンテナーが別のファイルに配置されています。

top.xhtml

<p:layout fullPage="true">
        <p:layoutUnit position="north" header="#{support.applicationTitle}">
            <h:form>
                <p:menubar>
                    <p:menuitem value="Quit" icon="ui-icon-close" action="#{userController.logOut()}" />
                </p:menubar>
            </h:form>
        </p:layoutUnit>

私のように私のfooter.xhtml</p:layout>に近いので、なしでは:

<p:layoutUnit position="south" header="© 2012 - 2012 PORTAL DE IDEIAS">
</p:layoutUnit></p:layout>

両方のファイルを試してみましたが、レイアウトタグを閉じる必要があるというエラーが表示されました。何が正しいのですが、どうすれば問題を解決できますか? これはテンプレートの最良のアプローチですか? もう1つの問題は、レイアウトタグが中央のレイアウトユニットを必要とすることです

4

1 に答える 1

30

これは確かに正しいアプローチではありません。テンプレートは、整形式の XML である必要があります。センター ユニットのみを指定するだけの場合は、代わりにマスター テンプレート ファイルを作成することをお勧めします。

ショーケース サイトの例を取り上げると、次のようになります。

/WEB-INF/templates/layout.xhtml

<!DOCTYPE html>
<html lang="en"
     xmlns="http://www.w3.org/1999/xhtml"
     xmlns:f="http://java.sun.com/jsf/core"
     xmlns:h="http://java.sun.com/jsf/html"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:p="http://primefaces.org/ui"
>
    <h:head>
        <title>Title</title>
    </h:head>
    <h:body>
        <p:layout fullPage="true">
            <p:layoutUnit position="north" size="100" header="Top" resizable="true" closable="true" collapsible="true">
                <h:outputText value="Top unit content." />
            </p:layoutUnit>

            <p:layoutUnit position="south" size="100" header="Bottom" resizable="true" closable="true" collapsible="true">
                <h:outputText value="South unit content." />
            </p:layoutUnit>

            <p:layoutUnit position="west" size="200" header="Left" resizable="true" closable="true" collapsible="true">
                <h:form>
                    <ui:include src="../templates/themeMenu.xhtml" />
                </h:form>
            </p:layoutUnit>

            <p:layoutUnit position="east" size="200" header="Right" resizable="true" closable="true" collapsible="true" effect="drop">
                <h:outputText value="Right unit content." />
            </p:layoutUnit>

            <p:layoutUnit position="center">
                <ui:insert name="content">Put default content here, if any.</ui:insert>
            </p:layoutUnit>
        </p:layout>
    </h:body>
</html>

<ui:insert>センターユニットの に注意してください。

テンプレート クライアントは次のようになります。

/page.xhtml

<ui:composition template="/WEB-INF/templates/layout.xhtml"
     xmlns="http://www.w3.org/1999/xhtml"
     xmlns:f="http://java.sun.com/jsf/core"
     xmlns:h="http://java.sun.com/jsf/html"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:p="http://primefaces.org/ui"
>
     <ui:define name="content">
         <p>Here goes your view-specific content.</p>
     </ui:define>
</ui:composition>

http://example.com/contextname/page.xhtmlで開きます。

以下も参照してください。

高度な Facelets テンプレートのライブ オープン ソースの例を探している場合は、OmniFaces ショーケース アプリが役立つかもしれません。

于 2012-05-21T16:58:22.890 に答える