Sortable
Sortable copied to clipboard
[Question]How not to render the dragged element onEnd?
When I drag an element from one list A to another list B, how do I keep list B from rendering that element, I want to go through this part of the logic manually.
do you have a solution? i have the same question
This seems to work for me.
onEnd: e => {
e.item.parentNode.removeChild(e.item);
}