ドラッグしたアイテムを複製し、元は残る。
左側リストの並べ替えは不可。
new Sortable(example4Left, { group: { name: 'shared', pull: 'clone', put: false // Do not allow items to be put into this list }, animation: 150, sort: false // To disable sorting: set sort to false }); new Sortable(example4Right, { group: 'shared', animation: 150 });
new Sortable(example6, { filter: '.filtered', // 'filtered' class is not draggable animation: 150 });
Try modifying the inputs below to affect the swap thresholds. You can see the swap zones of the squares colored in dark blue, while the "dead zones" (that do not cause a swap) are colored in light blue.
new Sortable(example7, { swapThreshold: 1, animation: 150 });
NOTE:注:ネストされたSortableをアニメーションで使用する場合、fallbackOnBodyオプションをtrueに設定することをお勧めします。また、invertSwapオプションをtrueに設定するか、swapThresholdオプションがデフォルト値の1(例0.65)より小さいことを常に推奨します。