在对ajax请求进行验证失败时,如何使用Primefaces突出显示UIInput?

时间:2013-08-27 19:45:43

标签: ajax jsf-2 primefaces

验证员类:

@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被触发并且验证失败时,我怎样才能实现这一点?

1 个答案:

答案 0 :(得分:3)

UIInput#setValid(false)工作正常。你只是忘了告诉ajax更新输入组件本身。将inputCpf@this添加到<p:ajax update>

<p:ajax ... update="@this inputNameOwner" />

验证器中的显式UIInput#setValid(false)调用是不必要的。摆脱它。一旦它捕获验证器抛出的ValidatorException,JSF就已经完成了所有这些工作。