Skip to content

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.

JSON Schema

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"
}

Core Properties

This component uses the core properties defined within the Common Parameters section.

Specific Properties

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.
  • label - The label to show for this value
  • value - The value of this radio input
true []
inline Determines if the selectboxes should be shown inline (horizontally) boolean false false
Clone this wiki locally