lukasbach/react-complex-tree

Change drag item style

Closed this issue · 1 comments

How can I change the style of the dragged element? Now it's just a copy of the browser.
Is there a method to hide a clone of an item when dragging, but keep the ability to drag using only the line between?

image

Resolved.

I change event onDragStart in defaultInteractionMode. Example for users:

onDragStart: e => {
                  console.log("drag start")
                  e.dataTransfer.dropEffect = 'move';
                  const img = new Image();
                  img.src = "example.gif";
                  e.dataTransfer.setDragImage(img, 10, 10);
                  actions.startDragging();
                },