gpt4 book ai didi

c# - KendoUI Grid InCell 编辑中的异常需要批量更新,批量设置为 false

转载 作者:可可西里 更新时间:2023-11-01 08:19:41 26 4
gpt4 key购买 nike

我在尝试将 KendoUI 网格用于在 Visual Studio 2013 中开发的 ASP.NET MVC (.net 4.5) 应用程序时出现异常。我已将网格配置为使用内联编辑,并将 Batch 显式设置为false 在数据源部分。这被呈现为局部 View 。需要注意的是,如果 GridEditMode.InLine 设置为 GridEditMode.InCell,则不会抛出异常。

异常

You must use InCell edit mode for batch updates.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.NotSupportedException: You must use InCell edit mode for batch updates.

代码

@using Kendo.Mvc.UI
@model MyApp1.Data.DataModels.Agent

@(Html.Kendo().Grid<MyApp1.Data.ViewModels.PhoneNumberVM>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(p => p.Number);
columns.Bound(p => p.Description);
columns.Command(command => command.Edit()).Width(90);
columns.Command(command => command.Destroy()).Width(90);
})
.ToolBar(toolBar =>
{
toolBar.Create().Text("Add Phone Number");
toolBar.Save();
})
.Editable(editable => editable.Mode(GridEditMode.InLine))
.DataSource(dataSource => dataSource
.Ajax()
.Batch(false)
.Events(events => events.Error("error_handler"))
.Model(model =>
{
model.Id(p => p.PhoneNumberId);
model.Field(p => p.PerId).Editable(false).DefaultValue(@Model.PerId);
})
.Read(read => read.Action("_GetPhones", "Pers", new { AgentId = Model.AgentId }))
.Create(create => create.Action("_AddPhone", "Pers"))
.Update(update => update.Action("_EditPhone", "Pers"))
.Destroy(destroy => destroy.Action("_DeletePhone", "Pers"))
)
)

最佳答案

我已经解决了这个...

在工具栏中,我有以下命令 toolBar.Save(),它似乎告诉控件它将处于某种批量编辑模式。通过删除它,我现在能够获得我想要的行为......

复制和粘贴示例是危险的!

关于c# - KendoUI Grid InCell 编辑中的异常需要批量更新,批量设置为 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18386699/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com