欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jstree的checkbox默认选中和隐藏

程序员文章站 2022-06-05 18:34:48
JSTree checkbox 初始化时根据后台参数默认选中 ......

jstree复选框自定义显示隐藏和初始化默认选中

首先需要配置 checkbox plugin

"plugins" : ['checkbox']

设置默认选中状态(checkbox 选中)

state: {checked: true}

示例:

$('#demo_tree').jstree({
    "core" : {
        'data': [
           { "id" : "ajson1", "parent" : "#", "text" : "simple root node", state: {checked: true}},
           { "id" : "ajson2", "parent" : "#", "text" : "root node 2" },
           { "id" : "ajson3", "parent" : "ajson2", "text" : "child 1" },
           { "id" : "ajson4", "parent" : "ajson2", "text" : "child 2" },
        ]
    },
    "plugins" : ['checkbox'],
});

jstree的checkbox默认选中和隐藏

jstree复选框自定义显示隐藏

jstree 本身不支持在节点中隐藏 checkbox,国外有个大佬给出一个利用 css 来隐藏的解决方案:

首先来一段 css

.no_checkbox>i.jstree-checkbox{display:none}

然后在 data 的 json 数据结构中

$('#demo_tree').jstree({
    "core" : {
        'data': [
           { "id" : "ajson1", "parent" : "#", "text" : "simple root node", state: {checked: true}},
           { "id" : "ajson2", "parent" : "#", "text" : "root node 2" },
           { "id" : "ajson3", "parent" : "ajson2", "text" : "child 1" , a_attr: {class: "no_checkbox"}},
           { "id" : "ajson4", "parent" : "ajson2", "text" : "child 2" },
        ]
    },
    "plugins" : ['checkbox'],
});

效果:

jstree的checkbox默认选中和隐藏

 

jstree version => 3.3.8