Kanban drag from column and drop to an external list view

hello

do you have an exemple of how this can be achieved ? I have tried some ways with documentation but get an error from Kanban: “tobj._fixOrder”.
I want to do this to move from Kanban to an external archive

Many thanks and stay safe !

Hello @schlayen,

do you have an exemple of how this can be achieved ?

Please take a look at the following example: Code Snippet.

The actual DnD logic is handled within the onBeforeDrop handler - in this case, we are simply adding items to the inner DataStore of the list (essentially copying items instead of moving them entirely). Note how we return false within the handler - this is done to prevent its default behaviour.

Thank you !!
Webix is great