1
我使用jsTree V3.0.8(http://www.jstree.com/)如何使用jstree V3插件與重新排序僅
如何重新安排,只有當使用DND插件像在V1(http://johntang.github.io/JsTree/_docs/dnd.html#demo2)
我使用jsTree V3.0.8(http://www.jstree.com/)如何使用jstree V3插件與重新排序僅
如何重新安排,只有當使用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/
感謝vakata。它爲我工作。 – thinhnk
工程精彩! +1。很多人仍然受到CRRM例子的影響......悲傷地... – Arcanyx