我使用过Kendo网格,我需要选择没有命令列的行。
这是我的代码..
var grid = $("#grid").kendoGrid({
dataSource: grid,
height: 450,
sortable: true,
selectable: "row",
columns: [
{ field: "user" },
{ field: "subject" },
{ field: "status" },
{ command: ["Update"], title: "Subscribe" },
{ command: ["destroy "], title: "Delete"}
]
});
在UI中,我只想选择用户,主题,状态。
答案 0 :(得分:0)
不可能开箱即用,但是当您使用select()方法时,您将只收到数据单元格。 如果您非常需要它,您可以使用网格的更改事件并搜索选定的命令单元格以删除其 k-state-selected 类。