如何在jstree插件中禁用折叠

时间:2017-08-21 05:30:07

标签: javascript jquery jstree

基本上,我想要做的是,我想在树结构中显示与子父节点相同的内容,而不是文件夹结构。

1 个答案:

答案 0 :(得分:1)

解决方案在https://github.com/vakata/jstree/issues/1101

上找到
(function ($, undefined) {
    "use strict";
    $.jstree.plugins.noclose = function () {
        this.close_node = $.noop;
    };
})(jQuery);

$('#tree').jstree({
    plugins : ["noclose", ... ],
    ...
});