How to get all checked nodes in jstree?

后端 未结 2 824
余生分开走
余生分开走 2020-12-11 13:40

I need to export my nodes like this:

function recursive_simplify(node){ 
    if(node.children){
        for(var i =0;i

        
相关标签:
2条回答
  • 2020-12-11 13:58
    get_all_checked: function(obj)
               {
                    obj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);
                    return obj.find(".jstree-checked, .jstree-undetermined");
                };
    

    use :

    var checkedNodes = $(this).jstree("get_all_checked");
    
    0 讨论(0)
  • 2020-12-11 14:23

    Using 3.3.8 version of jsTree, to get all the undetermined nodes, get_undetermined option is available.

    Hence, you can use both get_selected and get_undetermined to fulfil your requirement.

    For complete and working source code, you can refer https://everyething.com/Example-of-jsTree-to-get-all-checked-nodes

    0 讨论(0)
提交回复
热议问题