ant-design/components/auto-complete/index.en-US.md

33 lines
1.5 KiB
Markdown
Raw Normal View History

2016-07-25 17:46:45 +08:00
---
category: Components
type: Data Entry
2016-07-25 17:46:45 +08:00
cols: 1
2016-09-08 16:53:50 +08:00
title: AutoComplete
2016-07-25 17:46:45 +08:00
---
Autocomplete function of input field.
2016-09-10 13:43:30 +08:00
## When To Use
2016-07-25 17:46:45 +08:00
2016-11-29 17:13:24 +08:00
When there is a need for autocomplete functionality.
2016-07-25 17:46:45 +08:00
## API
```jsx
const dataSource = ['12345', '23456', '34567'];
<AutoComplete dataSource={dataSource} />
```
2016-11-29 17:13:24 +08:00
Since `AutoComplete` is based on `Select`, so besides the following API, `AutoComplete` has the same API as `Select`.
2016-07-25 17:46:45 +08:00
| Property | Description | Type | Default |
|----------------|----------------------------------|------------|--------|
| dataSource | Data source for autocomplete | [DataSourceItemType](https://git.io/vMMKF)[] | |
| value | selected option | string\|string[]\|{ key: string, label: string\|ReactNode }\|Array<{ key: string, label: string\|ReactNode }> | - |
| defaultValue | Initial selected option. | string\|string[]\|{ key: string, label: string\|ReactNode }\|Array<{ key: string, label: string\|ReactNode }> | - |
2016-07-25 17:46:45 +08:00
| allowClear | Show clear button, effective in multiple mode only. | boolean | false |
| onChange | Called when select an option or input value change, or value of input is changed | function(value, label) | - |
| onSelect | Called when a option is selected. param is option's value and option instance. | function(value, option) | - |
2016-07-25 17:46:45 +08:00
| disabled | Whether disabled select | boolean | false |
| placeholder | placeholder of input | string | - |
| optionLabelProp | Which prop value of option will render as content of select. | string | `children` |