Open
Description
Hello NicePeoplez.
I try to swap two items in two different column, but, without success, is this possible with this library ?
initial:
col1 |<>| col2
itemA1 |<>| itemB1 -> try to move a1 on right corner
itemA2 |<>| itemB2
expected result:
col1 |<>| col2
itemB2 |<>| itemB1
itemA2 |<>| itemA1
i tried:
new Sortable(col1, {
swap: true,
group: cols
});
new Sortable(col2, {
swap: true,
group: cols
});
But my result is like:
col1 |<>| col2
---- |<>| itemB1
itemA2 |<>| itemB2
---- | <> | itemA1 ---> deuhhh