2016-07-21 10:09:01 +08:00
---
category: Components
2016-11-09 14:43:32 +08:00
type: Data Entry
2016-07-21 10:09:01 +08:00
title: Cascader
---
Cascade selection box.
2016-09-10 13:43:30 +08:00
## When To Use
2016-07-21 10:09:01 +08:00
- When you need to select from a set of associated data set. Such as province/city/district, company level, things classification.
- When selecting from a large data set, with multi-stage classification separated for easy selection.
2016-11-29 17:13:24 +08:00
- Chooses cascade items in one float layer for better user experience.
2016-07-21 10:09:01 +08:00
## API
```html
2019-05-07 14:57:32 +08:00
< Cascader options = "{options}" onChange = "{onChange}" / >
2016-07-21 10:09:01 +08:00
```
| Property | Description | Type | Default |
2019-05-07 14:57:32 +08:00
| --- | --- | --- | --- |
2017-10-25 10:25:44 +08:00
| allowClear | whether allow clear | boolean | true |
2017-12-01 19:28:41 +08:00
| autoFocus | get focus when component mounted | boolean | false |
2017-10-25 10:25:44 +08:00
| changeOnSelect | change value on each selection if set to true, see above demo for details | boolean | false |
2016-07-21 10:09:01 +08:00
| className | additional css class | string | - |
2017-11-21 21:52:40 +08:00
| defaultValue | initial selected value | string\[] | \[] |
2016-07-21 10:09:01 +08:00
| disabled | whether disabled select | boolean | false |
2017-10-25 10:25:44 +08:00
| displayRender | render function of displaying selected options | `(label, selectedOptions) => ReactNode` | `label => label.join(' / ')` |
2016-07-21 10:09:01 +08:00
| expandTrigger | expand current item when click or hover, one of 'click' 'hover' | string | 'click' |
2018-07-29 00:05:44 +08:00
| fieldNames | custom field name for label and value and children (before 3.7.0 it calls `filedNames` which is typo) ) | object | `{ label: 'label', value: 'value', children: 'children' }` |
2017-10-10 11:35:34 +08:00
| getPopupContainer | Parent Node which the selector should be rendered to. Default to `body` . When position issues happen, try to modify it into scrollable content and position it relative.[example](https://codepen.io/afc163/pen/zEjNOy?editors=0010) | Function(triggerNode) | () => document.body |
2017-10-25 10:25:44 +08:00
| loadData | To load option lazily, and it cannot work with `showSearch` | `(selectedOptions) => void` | - |
| notFoundContent | Specify content to show when no result matches. | string | 'Not Found' |
| options | data options of cascade | object | - |
| placeholder | input placeholder | string | 'Please select' |
| popupClassName | additional className of popup overlay | string | - |
| popupPlacement | use preset popup align config from builtinPlacements: `bottomLeft` `bottomRight` `topLeft` `topRight` | string | `bottomLeft` |
2017-12-29 20:22:58 +08:00
| popupVisible | set visible of cascader popup | boolean | - |
2017-10-25 10:25:44 +08:00
| showSearch | Whether show search input in single mode. | boolean\|object | false |
| size | input size, one of `large` `default` `small` | string | `default` |
| style | additional style | string | - |
2018-09-16 19:36:19 +08:00
| suffixIcon | The custom suffix icon | ReactNode | - |
2017-11-21 21:52:40 +08:00
| value | selected value | string\[] | - |
2017-10-25 10:25:44 +08:00
| onChange | callback when finishing cascader select | `(value, selectedOptions) => void` | - |
| onPopupVisibleChange | callback when popup shown or hidden | `(value) => void` | - |
2016-09-01 11:08:41 +08:00
Fields in `showSearch` :
| Property | Description | Type | Default |
2019-05-07 14:57:32 +08:00
| --- | --- | --- | --- |
2017-10-25 10:25:44 +08:00
| filter | The function will receive two arguments, inputValue and option, if the function returns true, the option will be included in the filtered set; Otherwise, it will be excluded. | `function(inputValue, path): boolean` | |
2018-11-26 11:29:16 +08:00
| limit | Set the count of filtered items | number \| false | 50 |
2017-10-25 10:25:44 +08:00
| matchInputWidth | Whether the width of result list equals to input's | boolean | |
| render | Used to render filtered options. | `function(inputValue, path): ReactNode` | |
| sort | Used to sort filtered options. | `function(a, b, inputValue)` | |
2016-09-01 11:08:41 +08:00
2017-12-01 19:28:41 +08:00
## Methods
2019-05-07 14:57:32 +08:00
| Name | Description |
| ------- | ------------ |
| blur() | remove focus |
| focus() | get focus |
2017-12-01 19:28:41 +08:00
2016-09-30 13:37:36 +08:00
< style >
.ant-cascader-picker {
2017-10-11 12:01:27 +08:00
width: 300px;
2016-09-30 13:37:36 +08:00
}
< / style >