Boolean Editors

Multiple editor formats for boolean-type data with different display options

Default Boolean Editor

The standard editor that appears for boolean types without specific formatting requirements.

Activation Conditions

  • "type": "boolean"

Checkbox Editor

Renders a single checkbox input for boolean values.

Activation Conditions

  • "type": "boolean"
  • "x-format": "checkbox"

Radio Buttons

Renders two radio inputs for explicit true/false selection. Labels can be customized.

Activation Conditions

  • "type": "boolean"
  • "x-format": "radios"
  • Optional: "x-enumTitles": ["Yes", "No"] for custom labels

Inline Radio Buttons

Horizontal layout version of the radio buttons editor.

Activation Conditions

  • "type": "boolean"
  • "x-format": "radios-inline"
  • Optional: "x-enumTitles": ["Yes", "No"] for custom labels

Select Dropdown

Renders a select input with true/false options. Option labels can be customized.

Activation Conditions

  • "type": "boolean"
  • "x-format": "select"
  • Optional: "x-enumTitles": ["Yes", "No"] for custom labels