struts-jquery datepicker 没有显示错误消息
我正在使用 struts-jquery 插件 3.1.0 和 struts v2.2.3。我在 jsp 中有一个日期选择器
<td><sj:datepicker id="candidate.personalDetails.dateOfBirthItem"
name="candidate.personalDetails.dateOfBirthItem" changeYear="true"
yearRange="-100:-18" maxDate="-18" changeMonth="true" readonly="true" required="true"/><span style="color: #B7B7B7">mm/dd/yyyy</span>
</td>
,我正在尝试验证它。 如果提交页面没有提供“candidate.personalDetails.dateOfBirthItem”的值,则验证 xml 中有以下条目
<field name="candidate.personalDetails.dateOfBirthItem">
<field-validator type="requiredstring">
<message key="required.candidate.dateOfBirthItem"></message>
</field-validator>
,不会显示错误消息,只有表单转发到 struts.xml 中“输入”指定的条目。其他非 jquery 字段的验证消息正确出现。我错过了什么吗?
I am using struts-jquery plugin 3.1.0 with struts v2.2.3. i have a date picker in a jsp
<td><sj:datepicker id="candidate.personalDetails.dateOfBirthItem"
name="candidate.personalDetails.dateOfBirthItem" changeYear="true"
yearRange="-100:-18" maxDate="-18" changeMonth="true" readonly="true" required="true"/><span style="color: #B7B7B7">mm/dd/yyyy</span>
</td>
which i am trying to validate. i have a following entry in the validation xml
<field name="candidate.personalDetails.dateOfBirthItem">
<field-validator type="requiredstring">
<message key="required.candidate.dateOfBirthItem"></message>
</field-validator>
if submit page without providing value for the "candidate.personalDetails.dateOfBirthItem" no error message getting displayed, only form gets forwarded to entry specified in for "input" in the struts.xml. Validations messages for other non jquery fields are coming correctly. am i missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不得不使用
而不是
I had to use
instead of