You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When cloning an element, it would be useful to have the option for the source Draggable to stay in the list.
This pattern is generally useful if you want to have a "source" list of items that can be dragged over a "target" list of items, but the source list itself is e.g. a gallery of widgets that can be added to a form. It doesn't make sense to remove the widget from the gallery, as the widgets never run out.
The text was updated successfully, but these errors were encountered:
+1, do you have a workaround for this in the meantime?
Unfortunately no workaround that I could find.
I have a hacky solution where I render the items without dnd, and then render the Draggable versions directly on top and set opacity to 0. Then, you can provide a custom renderClone implementation to make the object visible while dragging.
Description
When cloning an element, it would be useful to have the option for the source
Draggable
to stay in the list.This pattern is generally useful if you want to have a "source" list of items that can be dragged over a "target" list of items, but the source list itself is e.g. a gallery of widgets that can be added to a form. It doesn't make sense to remove the widget from the gallery, as the widgets never run out.
The text was updated successfully, but these errors were encountered: