Telerik Grid添加,更新和删除无法正常工作

时间:2015-01-15 00:51:07

标签: c# asp.net-mvc-3 telerik

我使用的是mvc c#和Html.Telerik()。网格

我想在网格上添加,更新和删除。但它没有发布数据来添加,更新和删除功能。

这是我的网格

@(Html.Telerik().Grid<GownHire.Models.tblstudent>()
        .Name("Grid")
        .DataKeys(dataKeys => dataKeys.Add(c => c.PKStudentID))
        .ToolBar(commands => commands.Insert())
        .DataBinding(dataBinding => dataBinding

            .Ajax()                
                .Select("_studentList", "Admin")              
                .Insert("studentInsert", "Admin")                
                .Update("studentUpdate", "Admin")                
                .Delete("studentDelete", "Admin")
        )
        .Columns(columns =>
        {
            columns.Bound(c => c.studentEnterDate);
            columns.Bound(c => c.flage);

            columns.Command(commands =>
            {
                commands.Edit();
                commands.Delete();
            })
                       .Width(180);
        }))

这是亩功能

    [GridAction(EnableCustomBinding = true)]
    public ActionResult studentUpdate(GridCommand command, tblstudent model)
  {
    // model data is null
    }

我的代码出了什么问题?

1 个答案:

答案 0 :(得分:-1)

user1348351:您的actionMethod“CeremonyUpdate”不是您在网格上声明的内容。将其更改为“_studentList”以选择数据,它将起作用