SortableJS / Sortable

Reorderable drag-and-drop lists for modern browsers and touch devices. No jQuery or framework required.
https://sortablejs.github.io/Sortable/
MIT License
29.78k stars 3.7k forks source link

When nested sorting tables, other properties such as clones cannot be configured, and nested subitems cannot be dragged after configuration #2337

Open BeiJiu123 opened 11 months ago

BeiJiu123 commented 11 months ago
for (let i = 0; i < nestedSortables.length; i++) {
            new Sortable(nestedSortables[i], {
                group: {
                    name: "shared",
                    pull: "clone"
                },
                animation: 150,
                fallbackOnBody: true,
                swapThreshold: 0.65,
                handle: ".drag",
                ghostClass: "ghost"
            });
        }

This is my configuration code. Do you have any other questions