Installation
Coming soon..
Examples
Default Checkbox
Selected Checkbox
Indeterminate Checkbox
Disabled Checkbox
Required Checkbox
Multiple Checkboxes
Properties
Property |
Type |
Description |
Usage |
---|---|---|---|
checked |
Boolean |
Controls the checked state of the checkbox. |
checked= true | false |
indeterminate |
Boolean |
Controls the indeterminate state of the checkbox. |
indeterminate= true | false |
disabled |
Boolean |
Controls the disabled state of the checkbox. |
disabled= true | false |
label |
String |
Label for the checkbox. |
label=” Agree to terms and conditions” |
required |
Boolean |
To make the checkbox as required field. |
required= true | false |
name |
String |
The name of the checkbox. |
name=”agreement” |
value |
String |
The value of the checkbox. |
value=”accepted” |