ant-design/components/checkbox/index.en-US.md

44 lines
1.5 KiB
Markdown
Raw Normal View History

2016-08-18 11:22:55 +08:00
---
category: Components
type: Data Entry
2016-08-18 11:22:55 +08:00
title: Checkbox
---
Checkbox.
## When To Use
- Used for selecting multiple values from several options.
- If you use only one checkbox, it is the same as using Switch to toggle between two states. The difference is that Switch will trigger the state change directly, but Checkbox just marks the state as changed and this needs to be submitted.
## API
### Checkbox
2017-10-25 10:25:44 +08:00
| Property | Description | Type | Default |
| -------- | ----------- | ---- | ------- |
| autoFocus | get focus when component mounted | boolean | false |
| checked | Specifies whether the checkbox is selected. | boolean | false |
| defaultChecked | Specifies the initial state: whether or not the checkbox is selected. | boolean | false |
2017-10-25 10:25:44 +08:00
| disabled | Disable checkbox | boolean | false |
2016-08-18 11:22:55 +08:00
| onChange | The callback function that is triggered when the state changes. | Function(e:Event) | - |
### Checkbox Group
2017-10-25 10:25:44 +08:00
| Property | Description | Type | Default |
| -------- | ----------- | ---- | ------- |
| defaultValue | Default selected value | string\[] | \[] |
| disabled | Disable all checkboxes | boolean | false |
2017-10-25 10:25:44 +08:00
| options | Specifies options | string\[] | \[] |
| value | Used for setting the currently selected value. | string\[] | \[] |
| onChange | The callback function that is triggered when the state changes. | Function(checkedValue) | - |
## Methods
### Checkbox
| Name | Description |
| ---- | ----------- |
| focus() | get focus |
| blur() | remove focus |