Owen Mills
Owen Mills
@treyan94 Are you importing it in a NodeJS context? And why do you have `window.Sortable = Sortable`? Sortable adds itself to the window when you import it.
Just set the option `pull: 'clone'` in the container you want to clone from.
Any update?
Could you provide a JSBin with this issue? I cannot reproduce.
@philippkuehn Would you want it also so that it would not all be deselected if the user clicks somewhere else on the page? If so, I think it might be...
You don't want `delay`, you want `fallbackTolerance`. See here: https://sortablejs.github.io/Sortable/#multi-drag
I knew this case was possible, but I didn't solve it because I didn't think anyone would find it :smile:
@elpollitodiablo @cron13 @saikiransripada It is possible currently using `onMove`: ```javascript Sortable.create(el, { onMove(evt) { if (evt.related.classList.contains('disabled')) return false; } }); ```
@elpollitodiablo Well if you are fine with being able to swap with the item, then why not use the `filter` option?
@elpollitodiablo I see. I remember this is what I was envisioning when I added the "feature" label. As of now I do not believe it is possible, but this is...