如何使用Kendo网格在控制器中显示验证错误消息? [英] How to display Validation error message in controller using Kendo grid?

查看:114
本文介绍了如何使用Kendo网格在控制器中显示验证错误消息?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我通过以下代码使kendo网格中的字段可

I made the fields in the kendo grid editable by the following code:

Html.Kendo().Grid(Model.lstResend)
  .Name("ResendFlowGride")
      .Columns(
             column =>
             {
                    column.Bound(e => e.FLOW_ID).Title("Id").Hidden(true);
                    column.Bound(e => e.GROUP_ID).Title("Group Id").Hidden(true);
                    column.Bound(e => e.GROUP_NAME).Title("Group Name");
                    column.Bound(e => e.ITEM_ID).Title("Item Id").Hidden(true);
                    column.Bound(e => e.ITEM_NAME).Title("Item Name");
                    column.Bound(e => e.ITEM_VALUE).Title("Item Value");
                        //  column.Bound(e => e.ITEM_VALUE).Ed

                 }
            )
         .Editable(editable => editable.Mode(GridEditMode.InCell))
         .DataSource(datasource => datasource.Ajax()

         .Model(model =>
         {
             model.Id(p => p.ITEM_ID);
             model.Field(p => p.ITEM_ID).Editable(false);
             model.Field(p => p.GROUP_ID).Editable(false);
             model.Field(p => p.GROUP_NAME).Editable(false);
             model.Field(p => p.ITEM_NAME).Editable(false);
             model.Field(p => p.ITEM_VALUE).Editable(true);
         })
         .Update(update => update.Action("Update", "Registration"))
         )

我有以下控制器:

public ActionResult Update([DataSourceRequest]DataSourceRequest request, ResendFlow txns)
{
    try
    {
        if (txns != null && ModelState.IsValid)
        {
            var regDetailsToUpdate = _repository.Context.REG_REGISTRATION_MST_T.Where(x => x.REGISTRATION_ID == txns.Reg_Id).FirstOrDefault();
            _repository.Update(regDetailsToUpdate, regDetailsToUpdate.REGISTRATION_ID);
            if (txns.ITEM_NAME == "Standard Settlement Configuration Id")
            {
                regDetailsToUpdate.STANDARD_SETTLEMENT_CONFIGURATION_ID = txns.ITEM_VALUE;
                if (String.IsNullOrEmpty(txns.ITEM_VALUE))
                {
                    //display error msg -> item valu
                    return Json(new { success = false, validinput = false, message = "Please enter the Standard Settlement Configuration Id" }, JsonRequestBehavior.AllowGet);
                }
                else
                {
                    int i = 0;
                    string s = txns.ITEM_VALUE;//"0393"
                    bool result = int.TryParse(s, out i);//0393

                    if (!result == true)
                    {
                        ModelState.AddModelError(txns.ITEM_VALUE, "Not Valid SSC");
                    }
                }
            }

            _repository.Save();
            return Json(new { success = true, validinput = true, message = "Updated details Successfully" }, JsonRequestBehavior.AllowGet);
        }
    }
    catch (Exception e)
    {
    }
    return Json(ModelState.ToDataSourceResult());
}

如果用户输入字符而不是数字,我想显示验证消息.如何在Controller中使用kendo显示验证错误消息?

I wanted to display Validation Message if the user enters characters instead of number.How to display Validation error message using kendo in Controller?

推荐答案

尝试替换

return Json(ModelState.ToDataSourceResult());

return Json(new []{ txns }.ToDataSourceResult(request, ModelState), JsonRequestBehaviour.AllowGet);

您要在数据源请求中传回ModelStaterequest.

You want to be passing the ModelState and the request back in the data source request.

在网格本身中,您需要引用DataSource的Error方法

In the grid itself you want to have a ref to the Error method of DataSource

.DataSource(datasource => datasource
    .Ajax()
    .Events(e => e
        .Error("Grid_Error")    // Can be named anything but it's usually best to add the suffix '_Error'
    )    

现在,您需要的是一个名为javascript的函数,它会显示以下错误:

Now all you need is a javascript function that is called this and prints the errors such as:

function Grid_Error(e){
    if(e.errors){
        var message = "There are some errors:\n";

        // Loop through the errors you defined in the controller
        $.each(e.errors, function(key, value){
            if('errors' in value)
            {
                $.each(value.errors, function(){
                    message += this. '\n';
                })
            }
        })

        alert(message);

        // Here you can simply cancel the changes using the datasource, reverting the grid back to its original state.
    }
}

注意:如果此网格是局部的,则可能需要将此javascript函数上一级,放在父级的cshtml中

NOTE: If this grid is in a partial, you may need to put this javascript function a level up, in the parent's cshtml

这篇关于如何使用Kendo网格在控制器中显示验证错误消息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆