gpt4 book ai didi

kendo-ui - 在 Kendo Treeview 中隐藏根复选框

转载 作者:行者123 更新时间:2023-12-03 22:51:02 25 4
gpt4 key购买 nike

我知道您可以使用复选框模板来控制其外观,但是如何隐藏根节点(并且仅根节点)的复选框?

更新

下面的答案也能解决问题。但是,我最终使用了这样的模板:

checkboxes: {
checkChildren: true,
template: "# if(item.Id != 1){# <input type='checkbox' name='section[#= item.Id #]' value='true' />#} #"
}

“Id”是我的数据源中的 id 字段。

最佳答案

这可能会奏效,但它很脏,定义模板要好得多:

$("#treeview").kendoTreeView({
...
checkboxes: true,
dataBound : function () {
$("#treeview > ul > li > div span.k-checkbox").hide();
}
});

看到它在这里运行: http://jsfiddle.net/OnaBai/b3UBh/1/

关于kendo-ui - 在 Kendo Treeview 中隐藏根复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17326792/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com