为什么表单在验证错误消息后没有被提交



我有一个更新用户信息的表单,如果验证失败,它显示错误消息,并且在纠正错误输入后,表单没有提交为什么?没有错误消息,提交正常。

<h:form id="update" prependId="false">
    <h:outputText value="Name: " styleClass="titleBlue"/>
    <h:inputText id="contactName" value="#{serviceBean.contactName}" maxlength="50" size="15" style="width:200px" >
        <f:validateLength minimum="3" maximum="50"/>             
    </h:inputText>              
    <h:message for="contactName" style="color:red;font-size: 0.70em;"/>
    <h:outputText value="Title: " styleClass="titleBlue"/>
    <h:inputText id="contactTitle" value="#{serviceBean.contactTitle}" maxlength="50" size="15" style="width:200px">
        <f:validateLength minimum="3" maximum="50"/>
    </h:inputText>
    <h:message for="contactTitle" style="color:red;font-size: 0.70em;"/>
    <h:panelGroup style="display:block; text-align:center">
        <a4j:commandButton action="#{serviceBean.update}" styleClass="titleBold" value="Update"/>
    </h:panelGroup>
</h:form>

为什么表单在显示警告消息后没有得到提交?我需要的id,如果值是null设置默认值,并提交表单。

相关内容

  • 没有找到相关文章

最新更新