ds-martinso
ds-martinso
Is it possible to make the dragging of an element to only autoscroll if I drag within the borders of the element's container, which uses the DragDropContext? Currently, when I...
In line 670 of index.es.js we have: ```javascript // run all reorder events if (mode && mode === DragMode.SWAP) { this.reorder.forEach(function (o) { return cols[o.a] = cols.splice(o.b, 1, cols[o.a])[0]; });...
On first render, passing in whatever columns that should be draggable works perfectly. It is possible to add columns to the draggable list. However, it is not working when I...
Is there a fix for this? Or do you only support Chrome?