|
|
@ -19,23 +19,23 @@ Checkbox component. |
|
|
|
|
|
|
|
| Property | Description | Type | Default | Version | |
|
|
|
| --- | --- | --- | --- | --- | |
|
|
|
| autoFocus | get focus when component mounted | boolean | false | 3.6.2 | |
|
|
|
| checked | Specifies whether the checkbox is selected. | boolean | false | 3.6.2 | |
|
|
|
| defaultChecked | Specifies the initial state: whether or not the checkbox is selected. | boolean | false | 3.6.2 | |
|
|
|
| disabled | Disable checkbox | boolean | false | 3.6.2 | |
|
|
|
| indeterminate | indeterminate checked state of checkbox | boolean | false | 3.6.2 | |
|
|
|
| onChange | The callback function that is triggered when the state changes. | Function(e:Event) | - | 3.6.2 | |
|
|
|
| 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 | | |
|
|
|
| disabled | Disable checkbox | boolean | false | | |
|
|
|
| indeterminate | indeterminate checked state of checkbox | boolean | false | | |
|
|
|
| onChange | The callback function that is triggered when the state changes. | Function(e:Event) | - | | |
|
|
|
|
|
|
|
#### Checkbox Group |
|
|
|
|
|
|
|
| Property | Description | Type | Default | Version | |
|
|
|
| --- | --- | --- | --- | --- | |
|
|
|
| defaultValue | Default selected value | string\[] | \[] | 3.6.2 | |
|
|
|
| disabled | Disable all checkboxes | boolean | false | 3.6.2 | |
|
|
|
| name | The `name` property of all `input[type="checkbox"]` children | string | - | 3.16.0 | |
|
|
|
| options | Specifies options | string\[] | \[] | 3.6.2 | |
|
|
|
| value | Used for setting the currently selected value. | string\[] | \[] | 3.6.2 | |
|
|
|
| onChange | The callback function that is triggered when the state changes. | Function(checkedValue) | - | 3.6.2 | |
|
|
|
| defaultValue | Default selected value | string\[] | \[] | | |
|
|
|
| disabled | Disable all checkboxes | boolean | false | | |
|
|
|
| name | The `name` property of all `input[type="checkbox"]` children | string | - | | |
|
|
|
| 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 |
|
|
|
|
|
|
@ -43,5 +43,5 @@ Checkbox component. |
|
|
|
|
|
|
|
| Name | Description | Version | |
|
|
|
| ------- | ------------ | ------- | |
|
|
|
| blur() | remove focus | 3.6.2 | |
|
|
|
| focus() | get focus | 3.6.2 | |
|
|
|
| blur() | remove focus | | |
|
|
|
| focus() | get focus | | |
|
|
|