Hi Ivan,
Great tool you have here.
I'm using it to display my database structure and i'm trying to get the "data-*" value of next sibling,
$('#jstree').on("move_node.jstree", function (e, data) {
var nextNode = get_next_dom(data.node.id);
alert(nextNode.id);
});
I can access every property of moved object, but i need also properties of next node. After i move the node i need to get the data-sort from next sibling so i can update my database for ordering.
Just wandering where and how to call this function.
Thanks
Denis