Can someone tell me why the binding "move_node.jstree" only works once, for the first node when moving a group of nodes? and how can I detect all moved nodes?
I need to detect all the moved nodes so that I can report through the ajax custom function. This is what I use per minute, but it only runs for the first node from my selection of nodes that move at the same time.
.bind("move_node.jstree", function (e, data) {
var eventID = data.rslt.o.attr("id").substring(11);
var groupID = data.rslt.np.attr("id").substring(11);
commitEventMove(eventID,groupID);
})
source
share