我试图在Ajax设置为true的情况下验证表单, 这是按钮的JSF代码:
<p:commandButton value="doit" action="#{form.checkForm}" ajax="true" validateClient="true" update="test0 test1 test2 test3 test4"/>
并在web.xml
我添加了:
<context-param>
<param-name>primefaces.CLIENT_SIDE_VALIDATION</param-name>
<param-value>true</param-value>
</context-param>
现在我要验证的输入不在更新属性中,
当我设置ajax="false"
验证工作正常,我收到消息,但当我将其设置为true时,我什么也得不到。
那么如何才能让它在ajax设置为true的情况下验证表单?