我在 Glassfish 上使用 Primefaces 和 JSF-2,试图交叉验证表单。这是场景:
<h:form id="form1">
<p:messages id="msgs" showDetail="false" autoUpdate="true" closable="true" />
some input fields with validation
</h:form>
<h:form id="form_upload">
some upload fields that dont trigger validations
</h:form>
<h:form id="buts">
<p:commandButton id="save" value="Save" action="#{bean.save}"
update=":form1 :form1:msgs" process=":form1">
</h:form>
我想要按钮保存以触发 form1 上的验证,这可能吗?