h:selectOneMenu onchange=“submit()” immediate=“tru

2019-01-24 12:09发布

I can't set my h:selectOneMenu to submit immediately without validating other inputs. Here is the code:

<h:selectOneMenu value="#{a.avalue}" onchange="submit()" immediate="true">   
    <f:selectItems value="#{b.bvalue}" var="k" itemLabel="#{k.asdad}"  
        itemValue="#{k.asdad}"/>   
</h:selectOneMenu>   
<h:inputText id="sada" value="#{c.cvalue}" required="true"  
    requiredMessage="*asdadadadasd"  
    validatorMessage="*asdsadadadadad">   
    <f:validateLength maximum="80"/>   
</h:inputText>

When I change the menu value, the validators of other inputs still fire. How can I deny that?

1条回答
放荡不羁爱自由
2楼-- · 2019-01-24 12:45

The immediate="true" on current input component doesn't stop validators of other input components from firing. It only causes that the current input component will be validated one phase before than usual. Basically, you need to attach a valueChangeListener to the input component and then call FacesContext#renderResponse() in the listener method so that the processing of all other input components will be skipped.

But as you're already using JSF 2.0, much better/easier is to use ajax powers instead of this old fashioned JSF 1.x approach.

E.g.

<h:selectOneMenu value="#{bean.country}">
    <f:selectItems value="#{bean.countries}" var="country" itemLabel="#{country.name}" itemValue="#{country.code}"/>
    <f:ajax listener="#{bean.changeCountry}" />
</h:selectOneMenu>   

with

public void changeCountry() {
    System.out.println("Selected country is: " + country);
}

If you'd like to re-render some parts of the form whenever the selection is changed, then use the render attribute. E.g.

    <f:ajax listener="#{bean.changeCountry}" render="otherComponentId" />

See also:

查看更多
登录 后发表回答