单击Button时,我需要在对话框中显示JSF验证消息,但是应该显示对话框不被隐藏。
<h:form prependId="false">
<h:panelGrid columns="1" cellpadding="5">
<p:commandButton value="Modal" onclick="dlg2.show();" type="button" />
</h:panelGrid>
<p:dialog header="Modal Dialog" widgetVar="dlg2" modal="true" height="200" width="400">
<h:panelGrid columns="1" >
<p:messages />
<p:inputText id="txt" value="#{converterBean.doubleValue}" required="true"/>
<p:commandButton ajax="false" value="Submit" action="#{converterBean.submit}" />
</h:panelGrid>
</p:dialog>
</h:form>
答案 0 :(得分:3)
您的案例与this example from the primefaces showcase非常相似。
请注意,<h:form>
位于<p:dialog>
内。另请注意示例的 LoginBean.java 如何设置回调参数。
更改<p:commandButton>
更新<p:messages>
的{{1}}(更新示例中的<p:growl>
。
答案 1 :(得分:1)
嗯,在调用进程中有一个选项,您只能处理某些字段 例如,下面显示的内容只会在someID下提交数据,而不是整个表单
<p:dialog id="dialog" header="Login" widgetVar="dlg" width="600" >
<h:panelGrid columns="3" cellpadding="5" id="someID">
<h:outputLabel for="username" value="Username: *" />
<p:inputText
id="username" required="true" label="username" requiredMessage="Field required" />
<p:message for="username"/>
<h:outputLabel for="password" value="Password: * " />
<h:inputSecret
id="password" required="true" label="password" requiredMessage="Field required" />
<p:message for="password"/>
<f:facet name="footer">
<p:commandButton value="Login" update="display" process="someID" onsuccess="dlg.hide()" onerror="dlg.show()" />
</f:facet>
</h:panelGrid>
</p:dialog>