KendoUI treeview 设置节点不能选中
时间: 2024-05-01 10:18:04 浏览: 56
TreeView只允许展开一个节点
您可以通过设置节点的selectable属性为false来禁止节点被选中。例如,如果您的treeview ID为treeview,您可以使用以下代码禁止选中节点:
```
$("#treeview").kendoTreeView({
dataSource: [{
text: "Parent",
items: [
{ text: "Child 1", selectable: false },
{ text: "Child 2", selectable: true }
]
}]
});
```
在上面的代码中,只有“Child 2”节点可以被选中,因为它的selectable属性设置为true。而“Child 1”节点的selectable属性设置为false,因此无法被选中。
阅读全文