2016-07-25 17:46:45 +08:00
|
|
|
---
|
|
|
|
category: Components
|
|
|
|
type: Form Controls
|
|
|
|
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.
|
|
|
|
|
|
|
|
## When to use
|
|
|
|
|
|
|
|
When need to use autocomplete function.
|
|
|
|
|
|
|
|
## API
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
const dataSource = ['12345', '23456', '34567'];
|
|
|
|
<AutoComplete dataSource={dataSource} />
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
| 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 in combobox mode | function(value, label) | - |
|
|
|
|
| disabled | Whether disabled select | boolean | false |
|