我在一个 h:form 中有两个 primefaces 对话框,我想从一个对话框提交一些所需的值,而不从另一个对话框提交所需的值:
<h:form>
<p:dialog modal="true" widgetVar="A">
<h:inputText value="#{bean.value}" required="true" />
<p:commandButton value="A" action="#{bean.someAction}" />
</p:dialog>
<p:dialog modal="true" widgetVar="B" >
<h:inputText value="#{bean.otherValue}" required="true" />
<p:commandButton value="B" action="#{bean.someOtherAction}" />
</p:dialog>
</h:form>
如果我按下命令按钮 A,对话框 B 中所需值的验证不要让我从对话框 A 提交值。
我怎样才能做到这一点?