【发布时间】:2015-11-09 12:01:53
【问题描述】:
我在当前页面中包含了一个 PF 对话框窗口,代码如下
<p:dialog id="dialog" header="Add Specification Feature" appendToBody="true" modal="true" widgetVar="featureDialog"
resizable="true" dynamic="true">
<c:if test="#{equipTemplateBean.showAddFetDialog}">
<ui:include src="EquipmentFeatureAdd.xhtml" />
</c:if>
</p:dialog>
在同一个父窗口中我有这个代码来打开对话框窗口
<p:commandLink id="create" actionListener="#{equipTemplateBean.addSpecFeatures}" oncomplete="featureDialog.show();"
update=":contentform:tabView:message,:contentform:tabView:dialog">
</p:commandLink>
但两者都在一个 <h:form> 之下
如何忽略父窗口中的弹出对话框窗口验证?
【问题讨论】:
标签: jsf jsf-2 primefaces