javascript - How can I disable collapse in jstree plugin -
basically, trying is, want display content falls under same category in tree structure child-parent node instead of folder structure.
the solution found on https://github.com/vakata/jstree/issues/1101
(function ($, undefined) { "use strict"; $.jstree.plugins.noclose = function () { this.close_node = $.noop; }; })(jquery); $('#tree').jstree({ plugins : ["noclose", ... ], ... });
Comments
Post a Comment