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

31 lines
1.2 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
When need to use autocomplete function.
## API
```jsx
const dataSource = ['12345', '23456', '34567'];
<AutoComplete dataSource={dataSource} />
```
Since `AutoComplete` is based on `Select`, so besides following API, `AutoComplete` has same API as `Select`.
2016-07-25 17:46:45 +08:00
| Property | Description | Type | Default |
|----------------|----------------------------------|------------|--------|
| dataSource | Data source for autocomplete | Array | |
2016-09-01 18:12:12 +08:00
| value | selected option | String/Array<String>/{key: String, label: React.Node}/Array<{key, label}> | - |
2016-07-25 17:46:45 +08:00
| defaultValue | Initial selected option. | string/Array<String> | - |
| 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 |