0

我最近将 Primefaces 从 4.0 升级到 5.1,然后单击 commandButton 后不会显示对话框。它适用于 dynamic="false" 但我需要它是延迟加载的。ExampleBean 是 sessionScoped,我使用的是 JSF 2.2。有人可以帮我解决这个问题吗?

<ui:composition template="/template/common/pagelayout.xhtml"
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://xmlns.jcp.org/jsf/core"
    xmlns:h="http://xmlns.jcp.org/jsf/html"
    xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
    xmlns:p="http://primefaces.org/ui"
    xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
    xmlns:ez="http://xmlns.jcp.org/jsf/composite">

    <ui:define name="content">    
        <h:form id="form">
            <p:commandButton type="button" value="Log" onclick="PF('dlgLog').show();" icon="botaoLog" />
        </h:form>

        <p:dialog header="HEADER" widgetVar="dlgLog" resizable="false" modal="true" height="500" width="1000" dynamic="true">
            <ui:include src="logPage.xhtml"/>
        </p:dialog>
    </ui:define>
</ui:composition>

日志页面.xhtml

<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:h="http://xmlns.jcp.org/jsf/html"
  xmlns:f="http://xmlns.jcp.org/jsf/core"
  xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
  xmlns:p="http://primefaces.org/ui">

  <h:head>
  </h:head>

  <h:body>
    <h:form id="formlog">
        <p:dataTable var="log" value="#{exampleBean.logs}" emptyMessage="Empty">

            <p:column headerText="Header1" width="10%">  
                <h:outputText value="#{log.date}">
                    <f:convertDateTime pattern="dd/MM/yyyy - HH:mm"/>
                </h:outputText>
            </p:column>

            <p:column headerText="Header2" width="10%">  
                <h:outputText value="#{log.op}" />  
            </p:column>

            <p:column headerText="Header3">
                <p:outputLabel value="#{log.name}"/>
            </p:column>

        </p:dataTable>
    </h:form>
  </h:body>
</html>
4

2 回答 2

0

更具体地说,您删除了 h:head 标签(我发现了 ;-)。在您使用的版本之间,PF 创建了它自己的 h:head 渲染器,它与代码 jsf 库中的默认实现不同,因此行为上的差异(假设您的 jsf impl 保持不变)。

于 2015-01-22T15:49:08.843 回答
0

终于知道问题出在哪里了。刚刚<h:head>从 logPage.xhtml 中删除了标签,它就起作用了!不确定我知道原因,可能与<ui:include>期待不应该有<h:head>标签的作品有关。

于 2015-01-22T13:18:01.233 回答