Skip to main content

Selections

Introduction

  • Selection is a configurable unit used to define the available options for a selection (dropdown) form field.

Configuration

ISON Configuration Details

Sample

<selections>
<selection id="select_id">
<option id="option_id_1">option_value_1</option>
<option id="option_id_2">option_value_2</option>
</selection>
</selections>

Explanation

  • <selections>: Wrapper element for Selections configuration.
  • <selection>: Represents a single selection with available options.
    • Attributes:
      • id: The unique ID of the Selection, which should match the ID configured in the related Wizard Step. This attribute is required.
    • Elements:
      • <option>: Defines an individual option within the selection.
        • Attributes:
          • id: The unique ID of the Option. This attribute is required.