我在局部视图中有两个 Kendo 网格定义,除了局部视图模型和网格项模型外,它们完全相同。只有其中一个在代码行上给了我 JavaScript 控制台错误“无法读取未定义的属性 'dataSource'”:
$("#index-grid").data("kendoGrid").dataSource.bind("change", function (e) {...})
而另一个没有。不是dataSource
未定义,而是$("#index-grid").data("kendoGrid")
. 然而,在另一个相同的网格中,我没有收到这个错误。提供给数据源的数据可能会使网格本身无效吗?网格定义如下所示:
@model TerminalIndexModel
@using Kendo.Mvc.UI
@using ParkPay.Helm.ViewModels
@(Html.Kendo().Grid<TerminalIndexItem>()
.Name("index-grid")
.Columns(columns =>
{
columns.Bound(p => p.Name);
columns.Template(@<text></text>).ClientTemplate("<input type='checkbox' #= IsActive ? checked='checked':'' # class='chkbx' />").Title("Active").Width(70);
columns.Bound(p => p.Remarks);
columns.Command(cmd => cmd.Destroy()).Width(80);
})
.ToolBar(toolbar =>
{
toolbar.Create();
toolbar.Save();
})
.HtmlAttributes(new { style = "height: 480px;"})
.Editable(editable => editable.Mode(GridEditMode.InCell))
.Filterable()
.Pageable()
.Scrollable()
.Sortable()
.Resizable(resize => resize.Columns(true))
.Reorderable(reorder => reorder.Columns(true))
.DataSource(dataSource => dataSource
.Ajax()
.ServerOperation(false)
.Batch(true)
.PageSize(20)
.Events(events => events.Error("kendoGridErrorHandler"))
.Model(model => model.Id(p => p.Id))
.Read(read => read.Action("Read", "Terminal"))
.Update(update => update.Action("BatchUpdate", "Terminal"))
.Create(create => create.Action("BatchCreate", "Terminal"))
.Destroy(destroy => destroy.Action("BatchDelete", "Terminal"))
)
)
唯一的区别是TerminalIndexItem
与LocationIndexItem' and and
TerminalIndexModel versus
LocationIndexModel , and of course the controller names in the CRUD definitions,
Terminal versus
Location`。我无计可施,无法找到两个网格之间的差异。