Sortable
Sortable copied to clipboard
Reorderable drag-and-drop lists for modern browsers and touch devices. No jQuery or framework required.
Hi all, Not directly an issue, but I'm trying to get sortable working on divs I dynamically create. Any idea how to solve this? So far it doesn't seem to...
with these lines, `this` is an instance of Sortable. https://github.com/SortableJS/Sortable/blob/daaefedad3c59204edfdbb27706e1447e6eb41d8/src/Sortable.js#L432-L433 i believe it's supposed to be: ```js on(el, 'dragover', this._onDragOver.bind(this)); on(el, 'dragenter', this._onDragOver.bind(this)); ``` this can sometimes lead to [this...
**Causes page crash when used in IE11 with IE8 Compatability mode enabled - corporate application** JS console reports **document.addEventListener** not available. **My workaround to skip loading Sortable if IE11 in...
When you finish scrolling a list with a touch device and multiDrag is enabled, the element I clicked on to start scrolling is selected. I would like the element not...
I find it also need to correct position when its parents' `perspective` or `filter` property set to something other than none. Reproduction: https://codepen.io/1010543618/pen/jOrZQXq See: [position - CSS: Cascading Style Sheets...
I was using nested Sortable elements and needed a way to easily dump the hierarchy. The added method is analogous to 'toArray()' except that it includes both ids of the...
It's an old closed issue that's been never resolved but I made a solution for #708. I added a new option, allowDuplicates, that is true by default and it preserves...
Hello, sry still a beginner with github. I had the Problem that in my Sortable List I have Textboxes that I want to change. But this Textboxes are not selectable...
Because of a fixed header in my application, i needed to have fine control on scroll sensitivity in the top direction. Here is the patch i use. To not break...
use cached parentEl because dragEl.parentNode can be null when using a virtual scroll list so far this fix seemed to work for me, not sure if this has other sideEffects?