我需要对 KendoTreeList 中的每个节点使用 kendo treeView 的 kendoTreeViewCheckable 功能。
有什么选项可以做,或者有什么方法可以像 KendoTreeList 一样在 Kendo 网格表中使用 KendoTreeView 吗?
看看https://docs.telerik.com/kendo-ui/api/javascript/ui/treelist/configuration/columns.selectable
例如
$("#treelist").kendoTreeList({
columns: [
{ selectable: true, width: 65 },
{ field: "id", width: 250},
{ field: "name", width: 250 },
{ field: "age", width: 250}
],
dataSource: [
{ id: 1, parentId: null, name: "Jane Doe", age: 31, city: "Boston" },
{ id: 2, parentId: 1, name: "John Doe", age: 55, city: "New York" }
]
});
这会向每个节点添加一个复选框列。