验证员类:
@FacesValidator("br.gov.valec.sicpd.util.CpfValidator")
public class CpfValidator implements Validator {
@Override
public void validate(FacesContext context, UIComponent component, Object value)
throws ValidatorException {
if (validateCpf(value.toString())) {
FacesMessage msg = new FacesMessage(FacesMessage.SEVERITY_ERROR,"Invalid Input","Invalid Input");
((UIInput) component).setValid(false); // this line doesnt work
throw new ValidatorException(msg);
}
}
JSF片段:
<p:inputText label="CPF" id="inputCpf"
value="#{mainBean.owner.cpf}">
<f:validator validatorId="br.gov.valec.sicpd.util.CpfValidator" />
<p:ajax event="change" update="inputNameOwner"
listener="#{mainBean.searchOwner}" />
</p:inputText>
当通过命令按钮提交表单时,primefaces会自动突出显示它。当ajax被触发并且验证失败时,我怎样才能实现这一点?
答案 0 :(得分:3)
UIInput#setValid(false)
工作正常。你只是忘了告诉ajax更新输入组件本身。将inputCpf
或@this
添加到<p:ajax update>
。
<p:ajax ... update="@this inputNameOwner" />
验证器中的显式UIInput#setValid(false)
调用是不必要的。摆脱它。一旦它捕获验证器抛出的ValidatorException
,JSF就已经完成了所有这些工作。