3

如何在 primefaces mobile 中创建模板,因为根标签是 f:view,而不是 html。

4

1 回答 1

5

XML 根元素无关紧要。它仅包含 XML 名称空间声明。关键是您应该<f:view renderKitId="PRIMEFACES_MOBILE">在主模板中有一个。因此,以下主模板的启动示例应该可以正常工作:

<f:view 
    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:pm="http://primefaces.org/mobile"
    renderKitId="PRIMEFACES_MOBILE"
>
    <ui:insert name="some" />
</f:view>

模板客户端看起来和往常一样:

<ui:composition template="/WEB-INF/template.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:pm="http://primefaces.org/mobile"
>
    <ui:define name="some">
        ...
    </ui:define>
</ui:composition>
于 2013-01-20T17:11:06.907 回答