tree
tree copied to clipboard
React Tree
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,...
 我在 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:   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...