mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-24 15:46:10 +08:00
c7c3625899
Update docs with prop "disabled" for Radio, RadioGroup, Checkbox and CheckboxGroup.
33 lines
1.3 KiB
Markdown
33 lines
1.3 KiB
Markdown
---
|
|
category: Components
|
|
type: Data Entry
|
|
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
|
|
|
|
| Property | Description | Type | Default |
|
|
|----------|------------------|----------|--------|
|
|
| checked | Specifies whether the checkbox is selected. | boolean | false |
|
|
| defaultChecked | Specifies the initial state: whether or not the checkbox is selected. | boolean | false |
|
|
| onChange | The callback function that is triggered when the state changes. | Function(e:Event) | - |
|
|
| disabled | Disable checkbox | boolean | | false|
|
|
|
|
### Checkbox Group
|
|
|
|
| Property | Description | Type | Default |
|
|
|----------|------------------|----------|--------|
|
|
| defaultValue | Default selected value | string[] | [] |
|
|
| value | Used for setting the currently selected value. | string[] | [] |
|
|
| options | Specifies options | string[] | [] |
|
|
| onChange | The callback function that is triggered when the state changes. | Function(checkedValue) | - |
|
|
| disabled | Disable all checkboxes | boolean | | false | |