Jsf primefaces`<;p:选择一个菜单`

Jsf primefaces`<;p:选择一个菜单`,jsf,primefaces,Jsf,Primefaces,我一直收到这个错误addAddress:states:Validation error:Value在Ajax中使用时无效。并尝试通过update=“@form”更新整个表单。 如果上述代码无效,请尝试在标记内更新标记搜索id。 让我们考虑一下这个代码 <h:form id="myForm"> <h:sometag id="ineer1"> <p:ajax update="ineer3"/>// it is **not work**

我一直收到这个错误addAddress:states:Validation error:Value在Ajax中使用
时无效。并尝试通过
update=“@form”
更新整个表单。 如果上述代码无效,请尝试在标记内更新标记搜索id。 让我们考虑一下这个代码

<h:form id="myForm">
    <h:sometag id="ineer1">
        <p:ajax update="ineer3"/>// it is **not work**
        <p:ajax update=":myForm:ineer2:ineer2"/>// it is **work**
    </h:sometag>
    <h:sometag id="ineer2">
        <h:someoutfield id="ineer3"/>
     </h:sometag>
<h:/form> 

//这不是工作**
//这是我的工作**
这是在我的工作结束,如果不工作,然后让我知道。
很乐意提供帮助:)

很抱歉,这与特定的验证错误完全无关。
public final class ConversionHelper {

    private ConversionHelper() {
    }

    @SuppressWarnings("unchecked")
    public static <T> T getAsObject(Class<T> returnType, String value) {
        BigDecimal id = BigDecimal.ZERO;
        if (returnType == null) {
            throw new NullPointerException(
                    "Trying to getAsObject with a null return type.");
        }
        if (value == null) {
            throw new NullPointerException(
                    "Trying to getAsObject with a null value.");
        }

        try {
            id = BigDecimal.valueOf(Long.parseLong(value));
        } catch (NumberFormatException nfe) {
            return null;
        }

        Session session = HibernateUtil.getSessionFactory().openSession();
        try {
            T r = (T) session.load(returnType, id);
            if (r != null)
                Hibernate.initialize(r);
            return r;
        } catch (HibernateException e) {
            e.printStackTrace();
        } finally {
            session.close();
        }
        return null;
    }

    public static String getAsString(Object value) {
        if (value instanceof Gendermaster) {
            Gendermaster result = (Gendermaster) value;
            return String.valueOf(result.getGenderid());
        } else if (value instanceof Salutationmaster) {
            Salutationmaster result = (Salutationmaster) value;
            return String.valueOf(result.getSalutationid());
        } else if (value instanceof Countrymaster) {
            Countrymaster result = (Countrymaster) value;
            return String.valueOf(result.getCountryid());
        } else if (value instanceof Statemaster) {
            Statemaster result = (Statemaster) value;
            return String.valueOf(result.getStateid());
        }
        return null;
    }
}
                    <p:row>
                        <p:column>
                        Country
                    </p:column>
                        <p:column>
                            <p:selectOneMenu id="country"
                                value="#{customerBean.country.countryid}" required="true">
                                <f:selectItem itemLabel="Select Country" itemValue="" />
                                <f:selectItems value="#{customerBean.countrydropdown}"
                                    var="countrymaster"
                                    itemLabel="#{countrymaster.countryname} - #{countrymaster.countrycodeNn}"
                                    itemValue="#{countrymaster.countryid}" />
                                <p:ajax update="states"
                                    listener="#{customerBean.updateStates()}" />
                            </p:selectOneMenu>
                        </p:column>
                    </p:row>
                    <p:row>
                        <p:column>
                        State
                    </p:column>
                        <p:column>
                            <p:selectOneMenu id="states" required="true"
                                value="#{customerBean.state}" converter="statemasterconverter">
                                <f:selectItem itemValue="" itemLabel="Select State" />
                                <f:selectItems value="#{customerBean.statedropdown}"
                                    var="statemaster"
                                    itemLabel="#{statemaster.statename} - #{statemaster.statecode}"
                                    itemValue="#{statemaster}" />
                            </p:selectOneMenu>
                        </p:column>
                    </p:row>

                        <p:commandButton id="saveBtn" value="Save Salutation"
                            update="msgs"
                                style="float: left;" icon="ui-icon-disk"
                                actionListener="#{customerBean.saveAddress()}" ajax="true" />
                        </p:column>
<h:form id="myForm">
    <h:sometag id="ineer1">
        <p:ajax update="ineer3"/>// it is **not work**
        <p:ajax update=":myForm:ineer2:ineer2"/>// it is **work**
    </h:sometag>
    <h:sometag id="ineer2">
        <h:someoutfield id="ineer3"/>
     </h:sometag>
<h:/form>