auto scroll large kanban inside scrollview when dragging card

Hi,
I’m rendering a large kanban inside a scrollview.

https://snippet.webix.com/u391iqos

Reaching the edge of the scrollview it doesn’t scroll and I’m forced to move the cart in some steps using middle columns.

Is there a way to drag a card from first to last column and make the scrollview auto scroll?

Hello, @mauro

We are sorry for the delay with the answer.
There is no native support for auto-scroll in scrollview. However, it is possible to add custom handlers to Kanban to implement it.
To track kanban DND, please, use events onListBeforeDragIn and onListDragOut that fires before a dragged element is released over the droppable area.
Comparing the x coordinate (left and right) of the dragging element with the x coordinate of the view, estimates the necessity and possibility to scroll the view.
Please, check the snippet here:Code Snippet