我尝试在我的kendo网格中添加一个复选框列。我使用此链接中的代码:
但它不适用于剃刀页面。 这是我的代码:
cshtml:
@(Html.Kendo().Grid<IQuestArchive>().Name("archivesGrid")
.DataSource(dataSource => dataSource.Ajax().Read(read => read.Action("Archives_Read", "Home").Type(HttpVerbs.Get))
.Sort(sort => sort.Add("Name").Ascending())).Columns(columns =>
{
columns.Template(@<text></text>).ClientTemplate("<input type='checkbox' class='checkbox'/>").Title("<input type='checkbox'/>").Width(10);
columns.Bound(request => request.ReadableName).Title("Name");
}).Sortable().Selectable(builder => builder.Mode(GridSelectionMode.Multiple).Type(GridSelectionType.Row)))
脚本:
//bind click event to the checkbox
$("#archivesGrid").table.on("click", ".checkbox" , selectRow);
//on click of the checkbox:
function selectRow() {
var checked = this.checked,
row = $(this).closest("tr"),
grid = $("#archivesGrid").data("kendoGrid"),
dataItem = grid.dataItem(row);
checkedIds[dataItem.id] = checked;
if (checked) {
//-select the row
row.addClass("k-state-selected");
} else {
//-remove selection
row.removeClass("k-state-selected");
}
}
我不明白出了什么问题,如果我在链接中的代码与它完全相同的逻辑之前进行比较......:s
答案 0 :(得分:1)
你需要仔细看看;我可以告诉你一个不同之处;你在做什么
$("#archivesGrid").table.on("click", ".checkbox" , selectRow);
而演示确实
var grid = $("#grid").kendoGrid({
//...
}).data("kendoGrid");
//bind click event to the checkbox
grid.table.on("click", ".checkbox" , selectRow);
了解代码的作用非常重要,因此您可以对其进行调试。 JQuery元素没有表属性。它是Kendo UI网格小部件的属性。