* Having sortable rows inside table, with different sections (made with tbody)
* Save the reordered rows in local storage.
I'm very happpy with the solution.
Now I have created a second table, with the same structure.
So I want to drag rows from "Table Sortable 1" to "Table Sortable 2".
I have made some efforts doing this, but the problems that occurs is the following:
1. When rows are dragged between the sections of Table Sortable 1, then the same row (copy) is added to Table Sortable 2, and no reordering occurs.
2. When rows are dragged between the sections of Table Sortable 2, then the same row (copy) is added to Table Sortable 2, and no reordering occurs. Instead ends up with a copy in the same section.
What I want is only a copy/clone when a row is being dragged from "Table Sortable 1" to "Table Sortable 2", NOT when being dragged between the sections (in any of the tables).
How can this being achieved, starting from this piece of code:
?