react-ui-tree icon indicating copy to clipboard operation
react-ui-tree copied to clipboard

React tree component with drag & drop

Results 48 react-ui-tree issues
Sort by recently updated
recently updated
newest added

I have a very large tree that I won't be able to load on initialization. Would it be possible to do lazy loading? A user clicks on a node and...

enhancement

is there anyway to limit drag at the same parent? ps ``` tree = { module: 'tree', children: [ { module: 'parentA', children: [ { module: 'a1'}, { module: 'a2'}...

feature

In example in the component `` there is a reference to its method `isNodeCollapsed`. The problem is that such method is not defined elsewhere in the `` component: https://github.com/pqx/react-ui-tree/blob/6d48ca6d7a7df86655c9a679bc4be3451e0391e5/example/app.js#L43

Defined a prop that ables to the developer to use a custo collapse icon, example in app.js

This will allow more efficient handling to state change without having to search through the whole tree to see what has changed.

Clicking on a renderedNode triggers drag. Propagation is stopped, so rendered node never gets click event. Drag-n-drop feature should have a disable option or implemented properly with distinguishing click and...

So that I can make API calls with an updated path for a particular object, I'd like it if if there was a handleMove/onMove hook for when an object is...

This can be reproduced in the example, resize your browser window and make it shorter than the tree. if you scroll the window when you are dragging a node. The...

I need to use drag-n-drop feature only to change parents of nodes, not sorting (because all nodes will be sorted in alphabetic or another order that can be defined by...