jqgrid 中的自定义错误消息

发布于 2024-11-06 19:59:15 字数 41 浏览 0 评论 0原文

如何在 jqGrid 表单中显示必填字段和其他验证的自定义错误消息。

How I can display custom error messages for required field and other validations in jqGrid forms.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仅此而已 2024-11-13 19:59:15

您可以使用 searchoptions 的 attr 属性 设置搜索工具栏中使用的 inputselect 元素的附加属性。

更新:在评论中,您解释说您的意思是自定义验证消息。您可以覆盖 $.jgrid.edit.msg 中的值(请参阅 grid.locale-en.js 或其他本地化文件)。例如,您可以使用

$.jgrid.edit.msg.required = "is missing";

如果您想让消息更加动态,您可以使用 custom editrule 并在 custom_func

You can use attr property of the searchoptions to set additional attributes of the input or select 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 (see grid.locale-en.js or other localization files). For example you can use

$.jgrid.edit.msg.required = "is missing";

If you want to make the message more dynamic you can use custom editrule and build the error message inside of custom_func.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文