jsTree Node Expand/Collapse

前端 未结 4 580
故里飘歌
故里飘歌 2021-02-09 08:55

I ran into the excellent jstree jQuery UI plug in this morning. In a word - great! It is easy to use, easy to style & does what it says on the box. The one thing I have n

4条回答
  •  盖世英雄少女心
    2021-02-09 09:23

    I achieved that by just using the event "before_open" and close all nodes, my tree had just one level tho, not sure if thats what you need.

    $('#dtree').on('before_open.jstree', function(e, data){
        $("#dtree").jstree("close_all");
    });
    

提交回复
热议问题