You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this time round, I wanted to be able to create a draggable cell between 2 tables. I.e.
how do I move the content of a cell from 1 table to another? I specifically only want to copy the content over into an existing cell on another table. It shouldn't remove my previous cell and it shouldn't create a new cell in the new table. The cells in the table are already created but empty initially.
The text was updated successfully, but these errors were encountered:
This is impossible to achieve at the moment for two reasons, I think:
The placeholder will be put in the wrong place. It should point to the cell the content will be put in, but it is pointing before or after the cell
There is no way to find out, what cell the pointer is closest to.
The latter issue is an API problem. I could make this available inside the afterMove callback. But the former issue can not be fixed easily (at least I can not think of anything which will fit well with the rest of the plugin).
You are always welcome to hack the source, to give it a try. It should not be too hard. You would have to change the movePlaceholder method.
I've used jquey sortable before and love it!
this time round, I wanted to be able to create a draggable cell between 2 tables. I.e.
how do I move the content of a cell from 1 table to another? I specifically only want to copy the content over into an existing cell on another table. It shouldn't remove my previous cell and it shouldn't create a new cell in the new table. The cells in the table are already created but empty initially.
The text was updated successfully, but these errors were encountered: