Options - smbc-digital/form-builder GitHub Wiki

Options

Options for checkbox, select or radio are defined as stated below.

Checkbox Select Radio
Text ✔️ ✔️ ✔️
Value ✔️ ✔️ ✔️
Hint ✔️ ✔️
Divider ✔️ ✔️
Exclusive ✔️
"Options": [
    {
      "Text": "Learn a foreign language",
      "Value": "language",
      "Hint": "Ie: chinese, russian, romanian"
    },
    {
      "Text": "Start writing a book",
      "Value": "book"
    },
    {
      "Text": "Take a photography course",
      "Value": "photography"
    },
    {
      "Text": "Take a photography course",
      "Value": "photography",
      "Divider": "or",
      "Exclusive": true
    }
  ]

Example radio with divider

image

Example checkbox with divider

image