我有一个 MVC 3 项目,我在其中经常使用 Kendo UI Grid。
典型的视图如下所示:
@using Kendo.Mvc.UI
@model List<ActionViewModel>
@(Html.Kendo().Grid<ActionViewModel>()
.Name("#grid")
.Columns(columns =>
{
columns.Bound(p => p.Name);
columns.Command(command => { command.Edit(); command.Destroy(); });
})
.ToolBar(toolbar => toolbar.Create().Text(Resources.Grid.Create))
.Editable(editable => editable.Mode(GridEditMode.PopUp)))
.Sortable()
.Scrollable()
.Filterable(f=>f.Extra(true))
.DataSource(dataSource => dataSource
.Ajax()
.Events(events => events.Error("error_handler"))
.Model(model => model.Id(p => p.Id))
.Create(update => update.Action("Create", "Action"))
.Read(read => read.Action("Read", "Action"))
.Update(update => update.Action("Update", "Action"))
.Destroy(update => update.Action("Delete", "Action"))
))
我经常需要为我的视图模型定义自定义编辑器模板,这些模板用于 Kendo UI 的编辑弹出窗口。
在 Kendo UI Grid 中,可以创建、更新和删除元素。默认情况下,编辑和创建的弹出窗口使用相同的编辑器模板。有没有一种简单的方法可以让两个单独的编辑器模板用于编辑和删除?