【问题标题】:Grid will not post - Batch Editing-Telerik UI for ASP.NET Core网格不会发布 - ASP.NET Core 的批量编辑-Telerik UI
【发布时间】:2020-03-28 19:11:14
【问题描述】:

我使用 ASP.Net Core MVC 3.1 和 EF 3.1 创建了一个 Web 应用程序。 我添加了一个网页以使用 ASP.Net Core Telerik Grid 批量更新学生电话号码(按年级)。页面顶部有一个小表格,有按钮,可以选择要更新学生电话号码的年级。 点击成绩按钮后,ASP.Net Core Telerik Grid 会显示相关学生的数据。

所以我的问题是,当我在进行必要的编辑后使用网格的保存更改按钮时,它会触发我的更新操作方法。但是网格没有向 action 方法传递任何内容,因此它接收到 null。我可以知道我在代码中犯了什么错误吗?

我的编码如下

索引.cshtml

@model School_MGT.Models.Students

<div class="container">
    <div class="container">
        <form asp-controller="AttendenceStudents" asp-action="Index">
            <p align="center">
                <input type="submit" name="btn" value="1A" />
                <input type="submit" value="1B" name="btn" />
            </p>
        </form>
    </div>
</div>
@(Html.Kendo().Grid<School_MGT.Models.Students>()
    .Name("Grid")
    .Columns(columns =>
        {
            columns.Bound(p => p.Add_No);
        columns.Bound(p => p.S_Name).Width(140);
        columns.Bound(p => p.Tel_H).Width(140);

    })
    .ToolBar(toolbar =>
        {
        toolbar.Create();
        toolbar.Save();
        })
    .Editable(editable => editable.Mode(GridEditMode.InCell))
    .Pageable()
    .Navigatable()
    .Sortable()
    .Scrollable()
    .Resizable(resize => resize.Columns(true))
    .DataSource(dataSource => dataSource
        .Ajax()
        .Batch(true)
        .PageSize(20)
        .ServerOperation(false)        
        .Model(model => model.Id(p => p.Add_No))
        .Update("Update", "AttendenceStudents")
    )
)

AttendenceStudentsController

namespace School_MGT.Controllers
{
    public class AttendenceStudentsController : Controller
    {
        private readonly ConnectionString _context;

        public AttendenceStudentsController(ConnectionString context)
        {
            _context = context;
        }
        public IActionResult Index()
        {
            return View();
        }
        [HttpPost]
        public  IActionResult Index(string btn)
        {
            var Students = from m in _context.Students select m;
            switch (btn)
            {
                case "1A":
                    Students = Students.Where(x => x.Grade == "1" && x.Class == "A");
                    return View();

                case "1B":
                Students = Students.Where(x => x.Grade == "1" && x.Class == "B");
                    return View();

                default:                   
                    return (View());
            }
        }

        [HttpPost]
        public IActionResult Update([Bind("RowID,Add_No,S_Name")] Students target)

        {
            Students entity = _context.Students.FirstOrDefault((r => r.Add_No == target.Add_No));            
            entity.Tel_H = target.Tel_H;           
            _context.SaveChanges();
            return View();
        }
    }
}

【问题讨论】:

    标签: c# asp.net-core telerik-grid


    【解决方案1】:

    当您在 DataSouce 定义的 .Update() 方法中定义更新操作方法时,您只传递操作方法和控制器名称作为参数,而忽略 lambda 片段。

    你有:

    .Update("Update", "AttendenceStudents")
    

    尝试以下方法:

    Update(update => update.Action("Update", "AttendenceStudents"))
    

    这遵循 Telerik 在 Grid for ASP.NET Core Batch Editing walkthrough example 中提出的建议。请参阅第 6 步底部的代码。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-06-22
      • 1970-01-01
      • 2015-05-06
      • 1970-01-01
      相关资源
      最近更新 更多