-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Select Box Component
Mike edited this page Jun 5, 2025
·
1 revision
For updated documentation on the Select Box component, refer to the Form.io User Guide.
The JSON Schema definition for this component is defined as follows.
{
"label": "Select Boxes",
"optionsLabelPosition": "right",
"tableView": false,
"defaultValue": {
"a": false,
"b": false,
"c": false
},
"values": [
{
"label": "A",
"value": "a",
"shortcut": ""
},
{
"label": "B",
"value": "b",
"shortcut": ""
},
{
"label": "C",
"value": "c",
"shortcut": ""
}
],
"key": "selectBoxes",
"type": "selectboxes",
"input": true,
"inputType": "checkbox"
}
This component uses the core properties defined within the Common Parameters section.
Property | Description | Value | Required | Default |
---|---|---|---|---|
values | An array of value objects | Array of value objects, where each item in the array has the following properties.
|
true |
[] |
inline | Determines if the selectboxes should be shown inline (horizontally) | boolean |
false |
false |