pupudu / window-table

Windowing Table for React based on React Window
https://window-table.netlify.com/
170 stars 13 forks source link

Cannot set dragImage because Row always rerenders #61

Open vincaslt opened 4 years ago

vincaslt commented 4 years ago

I set some dragging state on a component wrapping the table, so when I change it, the table re-renders and all rows are unmounted and then re-mounted.

The Row sets event.dataTransfer.setDragImage in onDragStart, but because it re-mounted, the event target changes and image is not shown. Also onDragEnd doesn't work because of the same reasons.