nestedSortable
nestedSortable copied to clipboard
Issues with drag locations
You can never move an item to the top of the last child in a nest. For example:
[L1 A]
[L2 A]
[L2 B]
[L1 B]
[L2 C]
[L2 D]
L2 B
can not be moved to a position at the top of L1 B
's children. Neither can [L2 D]
be moved above [L2 C]
, though [L2 C]
can be moved below [L2 D]
.
In general, it is very, very difficult to get a dragged item to stick in the last child of any nest.
Did you ever find a solution to this?