我在下面发布了我的代码。在面板属性的同时,一切正常
(id = "idPanemCriticas"
)closable = "false"
。
如果我将其更改为true
,则它不会显示更多消息,如果我关闭面板,则无法打开更多消息。
我真的需要帮助,谢谢。
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>JSF 2 + PrimeFaces</title>
</h:head>
<h:body>
<h:form>
<p:panel id="idPanelCad" header="Cadastro de Usuário" style="width: 60%;">
<h:panelGrid columns="6">
<h:outputText value="Nome:" />
<p:inputText id="nome" value="#{loginMb.usuario.nome}" required="true" size="20"
requiredMessage="Informação do nome é obrigatório.">
<h:outputText value="*" />
</p:inputText>
<h:outputText value="Sobrnome:" />
<p:inputText id="idSobreNome" value="#{loginMb.usuario.sobreNome}"
required="true" size="20" requiredMessage="Informação do sobrenome é obrigatório.">
</p:inputText>
<h:outputText value="*" />
</h:panelGrid>
<h:panelGrid columns="3">
<h:outputText value="Senha:" />
<p:password id="idSenha" value="#{loginMb.usuario.senha}" feedback="true"
required="true" requiredMessage="Informação da senha é obrigatória.">
</p:password>
<h:outputText value="*" />
</h:panelGrid>
<h:panelGrid>
<p:commandButton value="Gravar" action="#{loginMb.gravar}" update="toUpdate "
onclick="wp.show();" process="toUpdate"/>
</h:panelGrid>
<h:panelGrid>
<h:outputText value="(*) - Campos com informação obrigatórias." />
</h:panelGrid>
<p:separator> </p:separator>
<p:outputPanel id="toUpdate">
<p:panel id="idPanemCriticas" widgetVar="wp" closable="false" header="Críticas"
rendered="true">
<p:messages id="mss" closable="true" />
</p:panel>
</p:outputPanel>
</p:panel>
</h:form>
</h:body>
</html>
答案 0 :(得分:0)
您是否尝试在autoUpdate="true"
中使用p:outputPanel
属性? p:outputPanel
的目标是允许您not to include an element in you element tree。在您的情况下,您的嵌入式p:panel
和p:messages
将始终呈现,因此我没有看到使用p:outputPanel
来实现这一点。