nestedSortable
nestedSortable copied to clipboard
IsTree dont expand when relocate
My IsTree is expanding when relocating (Dropping) - I dont want it to do this - how do i stop?
The following doesnt work:
relocate: function () { $('.menu-tree-li').removeClass('mjs-nestedSortable-expanded'); }
I think you will just want to "refresh" the sortable when relocating.
relocate: function () {
$('.menu-tree-li').nestedSortable("refresh");
}
Have a look at #63 , my version of _clearEmpty stops the isTree from expanding