我使用的是jsTree V3.0.8(http://www.jstree.com/)
如何在使用dnd插件时重新排序,例如在V1(http://johntang.github.io/JsTree/_docs/dnd.html#demo2)
答案 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/