Group of checkboxes.
When making multiple selections from a set of options.
Instead of the Select component, display options directly.
{"CheckboxGroup": {"bind": "CheckboxGroup_value","edit": {"type": "CheckboxGroup","props": {"options": [{"label": "Apple","value": 1},{"label": "Pear","value": 2},{"label": "Orange","value": 3}]}}}}
interface Option {label: stringvalue: stringdisabled?: boolean}type IProps = typeof Group & Component.PropsEditComponent & {}
Properties | Description | Type | Default | Required | Version |
---|---|---|---|---|---|
options | list of options | IProps['options'] | - | no |
For other properties, see Antd CheckboxGroup
Group of checkboxes.
When making multiple selections from a set of options.
Instead of the Select component, display options directly.
{"CheckboxGroup": {"bind": "CheckboxGroup_value","edit": {"type": "CheckboxGroup","props": {"options": [{"label": "Apple","value": 1},{"label": "Pear","value": 2},{"label": "Orange","value": 3}]}}}}
interface Option {label: stringvalue: stringdisabled?: boolean}type IProps = typeof Group & Component.PropsEditComponent & {}
Properties | Description | Type | Default | Required | Version |
---|---|---|---|---|---|
options | list of options | IProps['options'] | - | no |
For other properties, see Antd CheckboxGroup