JSF / PrimeFaces - 如何显示自定义验证器的消息,但不显示同一组件上的必需验证

时间:2018-03-22 20:37:27

标签: jsf primefaces jsf-2 jsf-2.2 mojarra

我有一个使用PrimeFaces的JSF2实现。我使用的是<p:selectOneRadio />组件。当用户选择&#34;否&#34;在收音机组件中,我想显示一条自定义消息。我已经为此创建了一个自定义验证器,并且与消息组件一起工作正常。但是,该组件也是必需的。我不希望&#34;值是必需的&#34;要在消息组件中显示的所需组件的验证错误。在这种情况下,我只希望突出显示字段和标签。

所以,问题是:如何指定给定的<p:message />组件仅显示来自我的自定义验证器的错误,而不是来自所需验证器的错误?

我在几年前看到一个类似问题的答案,说明你可以将消息for属性设置为一个实际不存在的组件,并通过以下方法将消息添加到该组件FacesContext的。比如这样: <p:message for="fooMsg" /> ... FacesContext.getCurrentInstance().addMessage("fooMsg",msg)

然而,这似乎不起作用。 JSF抛出一个错误,它无法找到组件&#34; fooMsg&#34;。

这是我目前的代码。

组件:

<p:outputLabel for="foo" id="foolbl"
    value="Some label text." />
<br />
<p:message for="foo" />
<p:selectOneRadio id="foo" layout="pageDirection"
    widgetVar="fooVar" required="true">
<f:selectItem itemLabel="Yes" itemValue="Yes" />
<f:selectItem itemLabel="No" itemValue="No" />
<p:ajax update="@this foolbl" process="@this" />
<f:validator validatorId="FooValidator" />
</p:selectOneRadio>

验证

@FacesValidator("FooValidator")
public class FooValidator implements Validator {

    @Override
    public void validate(FacesContext context, UIComponent component, Object value) throws ValidatorException {

        if (value != null) {
            String sValue = (String) value;
            if (sValue.trim().equalsIgnoreCase("No")) {
                FacesMessage msg = new FacesMessage("Summary",
                        "Detail");
                msg.setSeverity(FacesMessage.SEVERITY_ERROR);

                throw new ValidatorException(msg);
            }
        }
    }

}

1 个答案:

答案 0 :(得分:1)

首先,这是默认的JSF行为。解决你的问题 问题,你可以使用jQuery来检查是否没有选择单选按钮并隐藏其中的消息 案例,例如:

<h:form id="form">
    <p:outputLabel for="foo" id="foolbl" value="Some label text." />
    <br />
    <p:message id="foomsg" for="foo" />
    <p:selectOneRadio id="foo" layout="pageDirection" widgetVar="fooVar"
        required="true">
        <f:selectItem itemLabel="Yes" itemValue="Yes" />
        <f:selectItem itemLabel="No" itemValue="No" />
        <p:ajax process="@this" update="@this foolbl foomsg" />
        <f:validator validatorId="FooValidator" />
    </p:selectOneRadio>

    <p:commandButton process="@this foo" update="foo foolbl foomsg"
        oncomplete="if( !PF('fooVar').checkedRadio.length ) $('#form\\:foomsg').hide();" />
</h:form>

查看commandButton的oncomplete属性。