以下にコードを投稿しました。パネル ( 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>