我在myForm中有一个primefaces commandButton,它只能提交这个特定的表单。如果我使用form.checkValidity()
进行表单验证并返回true,则整个页面都会被提交。如何避免提交整个页面并仅提交指定区域?
<p:commandButton
action="#{registrationController.register}" onclick="regForm[0].checkValidity()"
partialSubmit="true" process="regForm" update="regForm"
value="#{messages['register.registerbutton']}" />