Я сделал это, чтобы заставить его работать.Я не знаю, если это правильный путь, но это работает
.bind("move_node.jstree", function (e, data) {
//--- Get parent <li>'s id
var parent = data.rslt.np.attr("id");
//--- Find all <li>'s within the ul beeing sorted
var sortOrderList = $('#' + parent + ' ul:first > li').map(function (i, n) {
return $(n).attr('id').replace("li_", "");
}).get().join(',');
data.rslt.o.each(function (i) {
//--- Server side action goes here
});
});
Надеюсь, что это может помочь другим