当我使用此功能时,它会给我一个错误。
var grid = $("#Grid").data("kendoGrid");
var currentSelection = grid.select();
并且Firefox显示错误:
答案 0 :(得分:2)
您必须确保在网格上设置了Selectable属性。
<%:Html.Kendo().Grid<Product>()
.Name("grid")
.Selectable()
.DataSource(dataSource =>
// configure the data source
dataSource
.Ajax()
.Read(read => read.Action("Products_Read", "Home"))
)
%>