bmcmahen/react-grid-dnd

disableDrag on individual GridItems

bmcmahen opened this issue · 4 comments

disableDrag on individual GridItems

Still an issue. I can create a PR if given permission

Hello, you can use onMouseDown = {(e) => e.stopPropagation ()} on the GridItem or some element inside it to prevent the event.

and mobile?

On mobile you can use onTouchMove={(e) => e.stopPropagation()}