2016-08-05 11:47:31 +08:00
---
category: Components
2022-11-09 12:28:04 +08:00
group: Data Entry
2016-08-05 11:47:31 +08:00
title: TreeSelect
2024-03-22 14:22:42 +08:00
description: Tree selection control.
2024-01-29 14:50:36 +08:00
cover: https://mdn.alipayobjects.com/huamei_7uahnr/afts/img/A*1zcHQLltaJcAAAAAAAAAAAAADrJ8AQ/original
coverDark: https://mdn.alipayobjects.com/huamei_7uahnr/afts/img/A*hjwGSIa4J8QAAAAAAAAAAAAADrJ8AQ/original
2022-11-09 12:28:04 +08:00
demo:
cols: 2
2016-08-05 11:47:31 +08:00
---
2016-09-10 13:43:30 +08:00
## When To Use
2016-08-05 11:47:31 +08:00
2019-05-07 14:57:32 +08:00
`TreeSelect` is similar to `Select` , but the values are provided in a tree like structure. Any data whose entries are defined in a hierarchical manner is fit to use this control. Examples of such case may include a corporate hierarchy, a directory structure, and so on.
2016-08-05 11:47:31 +08:00
2022-11-09 12:28:04 +08:00
## Examples
2022-11-17 17:31:26 +08:00
<!-- prettier - ignore -->
2022-11-09 12:28:04 +08:00
< code src = "./demo/basic.tsx" > Basic< / code >
< code src = "./demo/multiple.tsx" > Multiple Selection< / code >
< code src = "./demo/treeData.tsx" > Generate from tree data< / code >
< code src = "./demo/checkable.tsx" > Checkable< / code >
< code src = "./demo/async.tsx" > Asynchronous loading< / code >
< code src = "./demo/treeLine.tsx" > Show Tree Line< / code >
< code src = "./demo/placement.tsx" > Placement< / code >
< code src = "./demo/status.tsx" > Status< / code >
< code src = "./demo/suffix.tsx" debug > Suffix< / code >
< code src = "./demo/render-panel.tsx" debug > _InternalPanelDoNotUseOrYouWillBeFired< / code >
2023-08-18 10:23:57 +08:00
< code src = "./demo/component-token.tsx" debug > Component Token< / code >
2022-11-09 12:28:04 +08:00
2016-08-05 11:47:31 +08:00
## API
2023-08-08 18:27:48 +08:00
Common props ref: [Common props](/docs/react/common-props)
2016-08-05 11:47:31 +08:00
### Tree props
2019-07-11 14:14:33 +08:00
| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
2023-07-27 14:19:55 +08:00
| allowClear | Customize clear icon | boolean \| { clearIcon?: ReactNode } | false | 5.8.0: Support object type |
2020-07-01 17:28:59 +08:00
| autoClearSearchValue | If auto clear search input value when multiple select is selected/deselected | boolean | true | |
| defaultValue | To set the initial selected treeNode(s) | string \| string\[] | - | |
2019-07-11 14:14:33 +08:00
| disabled | Disabled or not | boolean | false | |
2022-08-05 11:21:07 +08:00
| popupClassName | The className of dropdown menu | string | - | 4.23.0 |
2023-04-04 17:17:36 +08:00
| popupMatchSelectWidth | Determine whether the popup menu and the select input are the same width. Default set `min-width` same as input. Will ignore when value less than select width. `false` will disable virtual scroll | boolean \| number | true | 5.5.0 |
2020-05-19 10:42:34 +08:00
| dropdownRender | Customize dropdown content | (originNode: ReactNode, props) => ReactNode | - | |
2020-04-28 14:09:54 +08:00
| dropdownStyle | To set the style of the dropdown menu | CSSProperties | - | |
2021-12-27 19:05:22 +08:00
| fieldNames | Customize node label, value, children field name | object | { label: `label` , value: `value` , children: `children` } | 4.17.0 |
2020-07-01 17:28:59 +08:00
| filterTreeNode | Whether to filter treeNodes by input value. The value of `treeNodeFilterProp` is used for filtering by default | boolean \| function(inputValue: string, treeNode: TreeNode) (should return boolean) | function | |
| getPopupContainer | To set the container of the dropdown menu. The default is to create a `div` element in `body` , you can reset it to the scrolling area and make a relative reposition. [example ](https://codepen.io/afc163/pen/zEjNOy?editors=0010 ) | function(triggerNode) | () => document.body | |
2020-10-21 10:33:43 +08:00
| labelInValue | Whether to embed label in value, turn the format of value from `string` to {value: string, label: ReactNode, halfChecked: string\[]} | boolean | false | |
2020-04-15 10:04:01 +08:00
| listHeight | Config popup height | number | 256 | |
2023-05-16 17:42:59 +08:00
| loadData | Load data asynchronously. Will not load when filtering. Check FAQ for more info | function(node) | - | |
2020-12-25 13:13:07 +08:00
| maxTagCount | Max tag count to show. `responsive` will cost render performance | number \| `responsive` | - | responsive: 4.10 |
2020-07-01 17:28:59 +08:00
| maxTagPlaceholder | Placeholder for not showing tags | ReactNode \| function(omittedValues) | - | |
2023-02-16 19:20:23 +08:00
| maxTagTextLength | Max tag text length to show | number | - | |
2020-07-01 17:28:59 +08:00
| multiple | Support multiple or not, will be `true` when enable `treeCheckable` | boolean | false | |
2022-01-10 09:41:57 +08:00
| notFoundContent | Specify content to show when no result matches | ReactNode | `Not Found` | |
2019-07-11 14:14:33 +08:00
| placeholder | Placeholder of the select input | string | - | |
2022-01-20 16:54:47 +08:00
| placement | The position where the selection box pops up | `bottomLeft` `bottomRight` `topLeft` `topRight` | bottomLeft | |
2020-07-01 17:28:59 +08:00
| searchValue | Work with `onSearch` to make search value controlled | string | - | |
2021-01-25 14:32:06 +08:00
| showCheckedStrategy | The way show selected item in box when `treeCheckable` set. **Default:** just show child nodes. ** `TreeSelect.SHOW_ALL` :** show all checked treeNodes (include parent treeNode). ** `TreeSelect.SHOW_PARENT` :** show checked treeNodes (just show parent treeNode) | `TreeSelect.SHOW_ALL` \| `TreeSelect.SHOW_PARENT` \| `TreeSelect.SHOW_CHILD` | `TreeSelect.SHOW_CHILD` | |
2020-06-17 23:18:14 +08:00
| showSearch | Support search or not | boolean | single: false \| multiple: true | |
2020-07-01 17:28:59 +08:00
| size | To set the size of the select input | `large` \| `middle` \| `small` | - | |
2022-02-17 16:41:12 +08:00
| status | Set validation status | 'error' \| 'warning' | - | 4.19.0 |
2023-07-19 20:27:09 +08:00
| suffixIcon | The custom suffix icon | ReactNode | `<DownOutlined />` | |
2022-07-23 16:54:36 +08:00
| switcherIcon | Customize collapse/expand icon of tree node | ReactNode \| ((props: AntTreeNodeProps) => ReactNode) | - | renderProps: 4.20.0 |
2021-09-27 18:16:50 +08:00
| tagRender | Customize tag render when `multiple` | (props) => ReactNode | - | |
2019-07-11 14:14:33 +08:00
| treeCheckable | Whether to show checkbox on the treeNodes | boolean | false | |
| treeCheckStrictly | Whether to check nodes precisely (in the `checkable` mode), means parent and child nodes are not associated, and it will make `labelInValue` be true | boolean | false | |
2020-07-01 17:28:59 +08:00
| treeData | Data of the treeNodes, manual construction work is no longer needed if this property has been set(ensure the Uniqueness of each value) | array< { value, title, children, \[disabled, disableCheckbox, selectable, checkable] }> | \[] | |
2021-04-01 09:34:47 +08:00
| treeDataSimpleMode | Enable simple mode of treeData. Changes the `treeData` schema to: \[{id:1, pId:0, value:'1', title:"test1",...},...] where pId is parent node's id). It is possible to replace the default `id` and `pId` keys by providing object to `treeDataSimpleMode` | boolean \| object< { id: string, pId: string, rootPId: string }> | false | |
2024-06-13 11:41:43 +08:00
| treeTitleRender | Customize tree node title render | (nodeData) => ReactNode | - | 5.12.0 |
2019-07-11 14:14:33 +08:00
| treeDefaultExpandAll | Whether to expand all treeNodes by default | boolean | false | |
| treeDefaultExpandedKeys | Default expanded treeNodes | string\[] | - | |
2022-06-06 18:57:00 +08:00
| treeExpandAction | Tree title open logic when click, optional: false \| `click` \| `doubleClick` | string \| boolean | false | 4.21.0 |
2019-11-20 14:55:34 +08:00
| treeExpandedKeys | Set expanded keys | string\[] | - | |
2020-10-21 10:33:43 +08:00
| treeIcon | Shows the icon before a TreeNode's title. There is no default style; you must set a custom style for it if set to `true` | boolean | false | |
2022-03-16 18:59:00 +08:00
| treeLoadedKeys | (Controlled) Set loaded tree nodes, work with `loadData` only | string[] | [] | |
2024-07-23 22:22:24 +08:00
| treeLine | Show the line. Ref [Tree - showLine ](/components/tree/#tree-demo-line ) | boolean \| object | false | 4.17.0 |
2020-06-17 23:18:14 +08:00
| treeNodeFilterProp | Will be used for filtering if `filterTreeNode` returns true | string | `value` | |
| treeNodeLabelProp | Will render as content of select | string | `title` | |
2020-07-01 17:28:59 +08:00
| value | To set the current selected treeNode(s) | string \| string\[] | - | |
2023-12-21 13:39:04 +08:00
| variant | Variants of selector | `outlined` \| `borderless` \| `filled` | `outlined` | 5.13.0 |
2020-07-01 17:28:59 +08:00
| virtual | Disable virtual scroll when set to false | boolean | true | 4.1.0 |
2019-07-11 14:14:33 +08:00
| onChange | A callback function, can be executed when selected treeNodes or input value change | function(value, label, extra) | - | |
2020-11-16 21:28:03 +08:00
| onDropdownVisibleChange | Called when dropdown open | function(open) | - | |
2020-07-01 17:28:59 +08:00
| onSearch | A callback function, can be executed when the search input changes | function(value: string) | - | |
| onSelect | A callback function, can be executed when you select a treeNode | function(value, node, extra) | - | |
2019-11-20 14:55:34 +08:00
| onTreeExpand | A callback function, can be executed when treeNode expanded | function(expandedKeys) | - | |
2024-05-23 11:52:34 +08:00
| onPopupScroll | Called when dropdown scrolls | (event: UIEvent) => void | - | 5.17.0 |
2016-08-05 11:47:31 +08:00
2017-12-01 19:28:41 +08:00
### Tree Methods
2021-05-27 14:48:48 +08:00
| Name | Description | Version |
| ------- | ------------ | ------- |
| blur() | Remove focus | |
| focus() | Get focus | |
2017-12-01 19:28:41 +08:00
2016-08-05 11:47:31 +08:00
### TreeNode props
> We recommend you to use `treeData` rather than `TreeNode`, to avoid the trouble of manual construction.
2019-07-11 14:14:33 +08:00
| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
2019-12-25 19:09:17 +08:00
| checkable | When Tree is checkable, set TreeNode display Checkbox or not | boolean | - | |
2019-07-11 14:14:33 +08:00
| disableCheckbox | Disables the checkbox of the treeNode | boolean | false | |
| disabled | Disabled or not | boolean | false | |
| isLeaf | Leaf node or not | boolean | false | |
| key | Required property (unless using `treeDataSimpleMode` ), should be unique in the tree | string | - | |
2020-10-21 10:33:43 +08:00
| selectable | Whether can be selected | boolean | true | |
2020-10-09 10:08:52 +08:00
| title | Content showed on the treeNodes | ReactNode | `---` | |
2019-07-11 14:14:33 +08:00
| value | Will be treated as `treeNodeFilterProp` by default, should be unique in the tree | string | - | |
2019-04-03 18:20:01 +08:00
2023-04-11 10:25:24 +08:00
## Design Token
< ComponentTokenTable component = "TreeSelect" > < / ComponentTokenTable >
2019-04-03 18:20:01 +08:00
## FAQ
2019-04-03 18:59:41 +08:00
### How to get parent node in onChange?
2019-04-03 18:20:01 +08:00
2023-05-09 21:44:05 +08:00
We don't provide this since performance consideration. You can get by this way: < https: / / codesandbox . io / s / get-parent-node-in-onchange-eb1608 >
2020-02-18 17:29:35 +08:00
### Why sometime customize Option cause scroll break?
You can ref Select [FAQ ](/components/select ).
2023-05-16 17:42:59 +08:00
### Why `loadData` not trigger when searching?
In earlier version, `loadData` will be triggered when searching. But we got feedback that it will block network when inputting. So we change it to not trigger `loadData` when searching. But you can still handle async logic by `filterTreeNode` :
```tsx
< TreeSelect
filterTreeNode={(input, treeNode) => {
const match = YOUR_LOGIC_HERE;
if (match & & !treeNode.isLeaf & & !treeNode.children) {
// Do some loading logic
}
return match;
}}
/>
```
2023-07-21 11:04:11 +08:00
### Why can't popup scroll horizontally?
Just turn off virtual scrolling, because the `scrollWidth` of the complete list cannot be accurately measured when virtual scrolling is turned on.