花式树
我们想要的是根据我们添加的自定义类禁用复选框。
例如:
renderNode: function(event, data) {
if(!data.node.folder) {
$(data.node.span).addClass("custom-class");
}
$(".custom-class").css({ // css to disable checkbox});
}
答案 0 :(得分:3)
您无法仅使用css禁用复选框(只需切换或调暗图像)。 而是使用api:
node.unselectable = true;
node.render();