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

How to use jstree v3 plugin with reorder only

我正在使用 jsTree V3.0.8 (http://www.jstree.com/)

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

像这样使用 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/