tree icon indicating copy to clipboard operation
tree copied to clipboard

React Tree

Results 138 tree issues
Sort by recently updated
recently updated
newest added

titleRender 多次刷新

Paste `the example` into a `Next.js` project, and run this page in the browser, it could render the tree correctly but no interactions at all. ```js /* eslint-disable no-alert, no-console,...

![image](https://user-images.githubusercontent.com/6167727/102599691-ca2ff480-4158-11eb-9ba5-2a6444583aee.png) 我在 antd 使用中也是这个场景,发现 `rc-tree` 将所有节点都渲染了一遍。可能是为了计算高度导致。

I see that I can expand all tree nodes on load. I would like to do it after they have loaded. Can this component do that?

Hello, Not sure if its a bug, but trying to expand a node on clikc of the title rather than the icon switcher as it looks on the ant design...

Hi I just wanna ask how can I enable the virtual animation feature of rc-tree. I wanted to use it for huge tree structure data. Please help. Thanks -create react...

Hi, There is a minor a11y violation in your code: ![image](https://user-images.githubusercontent.com/6229031/158378092-1d184fd9-eca0-4d2d-8391-9e0a36b7334c.png) ![image](https://user-images.githubusercontent.com/6229031/158378207-255e6502-9cf7-4428-9175-3f34c0452d05.png) Is it possible to fix it?

For instance, the `on` functions have inline types rather than being specified in interfaces. For example, here's the [onSelect](https://github.com/react-component/tree/blob/f5817242185cc7c3cbd42cc161a0cee8ffb54458/src/Tree.tsx#L137) definition in the Tree Props interface. This makes it more difficult,...

I have a helper function that expands a tree node (node1) by clicking on the switcher element. - The onExpand handler is invoked with expanded = true. - But I...