jqGrid的显示在表单字段自定义消息(JQgrid show custom message on

2019-10-31 05:35发布

使用免费的jqGrid最新版本。

在表单字段我有onchange事件捆绑到文本框。 在事件中,我做一个AJAX调用我MVC控制器,验证已输入的输入。 我遇到的唯一问题是如何显示任何自定义消息的情况下,输入无效。 我有下面的代码:

 {
   name: 'id', index: 'id', width: 60, sorttype: "text", editable: true, align: "right", editrules: { required: true },
   editoptions:
    {
     dataEvents: [
         {
          type: 'change',
          fn: function (e) {                              
              var input= $(this).val();
                 $.ajax({
                     url: '@Url.Action("Verify", "Home")',
                     data: "id=" + input,
                     type: "GET",
                     success: function (data){
                       if(data == '')
                       {
                         //Show custom message
                       }
                     },
                     error: function (passParams) {
                     }
                    });
                   }
                  }
                 ]}
                }

我知道我可以显示在提交后的事件如下面的消息,但我想对在表单字段文本框的onchange事件自定义消息。

afterSubmit: function (response, postData) {
     return [false, 'Custom Message'];
     }
文章来源: JQgrid show custom message on form field