如何禁用 jstree 插件中的折叠
How can I disable collapse in jstree plugin
基本上,我想要做的是,我想在树结构中显示属于同一类别的内容作为父子节点而不是文件夹结构。
解决方案是在 https://github.com/vakata/jstree/issues/1101
上找到的
(function ($, undefined) {
"use strict";
$.jstree.plugins.noclose = function () {
this.close_node = $.noop;
};
})(jQuery);
$('#tree').jstree({
plugins : ["noclose", ... ],
...
});
基本上,我想要做的是,我想在树结构中显示属于同一类别的内容作为父子节点而不是文件夹结构。
解决方案是在 https://github.com/vakata/jstree/issues/1101
上找到的(function ($, undefined) {
"use strict";
$.jstree.plugins.noclose = function () {
this.close_node = $.noop;
};
})(jQuery);
$('#tree').jstree({
plugins : ["noclose", ... ],
...
});