jqgrid 中的自定义错误消息
如何在 jqGrid 表单中显示必填字段和其他验证的自定义错误消息。
How I can display custom error messages for required field and other validations in jqGrid forms.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 searchoptions 的
attr
属性 设置搜索工具栏中使用的input
或select
元素的附加属性。更新:在评论中,您解释说您的意思是自定义验证消息。您可以覆盖
$.jgrid.edit.msg
中的值(请参阅grid.locale-en.js
或其他本地化文件)。例如,您可以使用如果您想让消息更加动态,您可以使用
custom
editrule 并在 custom_func。You can use
attr
property of the searchoptions to set additional attributes of theinput
orselect
element used in the searching toolbar.UPDATED: In the comment you explained that you means to customize the validation messages. You can ovewride the valuse from
$.jgrid.edit.msg
(seegrid.locale-en.js
or other localization files). For example you can useIf you want to make the message more dynamic you can use
custom
editrule and build the error message inside of custom_func.