react-dnd-html5-backend icon indicating copy to clipboard operation
react-dnd-html5-backend copied to clipboard

HTML5 backend for React DnD [Legacy Repo]

Results 37 react-dnd-html5-backend issues
Sort by recently updated
recently updated
newest added

Currently using react-dnd-html5-backend version 2.1.2 and when I attempt to drag plain text i get the following error in the console: > Error: Permission denied to access property "types" Stack...

Moved from https://github.com/gaearon/react-dnd/issues/180. Original issue by @adjohu. --- If I zoom out and start dragging elements, they appear offset from the mouse.

bug

I have a complex element that is being dragged over a list of multiple other similar elements and only a single drop target. Sometimes dragging works fine, but sometimes it...

Currently, the native drag source for Files only extracts "files" from the data transfer object. In order to use Chrome's support for folders and folder traversal, it would be nice...

enhancement

I have a drag and drop file upload area in the `DragDropContext`, but the [handleTopDragOver](https://github.com/gaearon/react-dnd-html5-backend/blob/master/src%2FHTML5Backend.js#L442-L446) prevents the drag event which makes my drag and drop upload component not working. Any...

When dragging in IE 11, sometimes the drag movement freezes and the cursor changes to something like a "not allowed" symbol. The app/browser appears unresponsive until the mouse button is...

The message at the top of the Readme file says: "React-Dnd has been restructured as a monorepo. This code has been merged into the the react-dnd main repository." I refer...

Right now all drag-and-drop operations that aren't managed by React-DnD are blocked. On pages that already have non-React-DnD drag-and-drop-handling code, this causes things to break while React-DnD is active. An...

enhancement

According to the docs when we call `monitor.getItem()` from target `drop` handler it must return the object we passed in draggable source `beginDrag()`. I've tested it on expamples from website...

bug

I have an app that uses the HTML5 backend for drop and drop internally. I want to use a sub-component that also uses it independently, but in the same app....