Jeff Robbins
Jeff Robbins
I just discovered this issue myself. Don't know if this is a "bug" or an "enhancement". But it really should be a part of MultiDrag. If anyone wants to implement...
I've created a Code Pen to illustrate this issue: https://codepen.io/jjeff/pen/rNLEZGL The MultiDrag plugin does not allow you to select items from multiple lists simultaneously. Selecting an item from a 2nd...
> Additionally, when multiple items are dragged to a different list, the selection seemingly disappears on drag end. However, by selecting a few items of the target list immediately after,...
I've funded a Bountysource listing for a PR on the MultiDrag plugin to add simultaneous multiselection across different lists. https://app.bountysource.com/issues/110133588-multidrag-simultaneous-multiselection-across-different-lists
FWIW, I think this is going to require some restructuring of MultiDrag's `newIndicies` and `oldIndicies` array elements. Currently, each one is structured as follows: ```typescript interface MultiDragIndex { // I'm...
> Couldn't this be accomplished by simply checking wether the multidrag component has a `group` option set? Since this behavior isn't actually supported atm, any code "relying" on this configuration...
> How would we realistically handle more complex group configurations? Let's say you have three groups (A, B, C) with two sortables each. A1 and A2 can put to B,...
> Speaking of groups, are there any established patterns for finding all Sortable instances in a specific group? Hmm… I can't figure out how you'd find all instances of Sortable...
Thanks @maxbol! This is great. I've updated [the Code Pen](https://codepen.io/jjeff/pen/rNLEZGL) with a patched version of Sortable from your PR. I found a few issues. But I've commented on [the pull...
I've solved my error by switching my rule from `**/*.jsc` to `*.jsc` which works because `matchBase` is enabled in `checkSingleArch()`. But the above still feels like a bug.