如何使用jstree v3插件只重新排序

时间:2015-05-20 09:06:02

标签: javascript jquery jstree jstree-dnd

我使用的是jsTree V3.0.8(http://www.jstree.com/

如何在使用dnd插件时重新排序,例如在V1(http://johntang.github.io/JsTree/_docs/dnd.html#demo2

1 个答案:

答案 0 :(得分:4)

使用check_callback选项,如下所示:

"check_callback" : function (op, node, par, pos, more) {
    if(more && more.dnd) {
        return more.pos !== "i" && par.id == node.parent;
    }
    return true;
},

这是一个演示: http://jsfiddle.net/DGAF4/509/