📄️ checkbox
Description:* Boolean toggle for enabling/disabling options
📄️ radiobutton-extended
Description:* Radio button where each option can optionally have an associated input control (textbox, datePicker, dropdown, etc.) displayed alongside. Unlike simple radiobutton, each option can include an embedded input field that becomes relevant when that option is selected. Some options may have no input (standalone choices), while others have different input types.
📄️ radiobutton
Description:* Simple single selection from a predefined list of mutually exclusive options. Each option is a standalone choice with no additional input fields.
📄️ dropdown
Description:* Dropdown list for selecting a single value from predefined options
📄️ dropdownWithAdd
Description:* Dropdown with a "+" (add) button that appends the selected value to another target field (typically a textarea). Used for building up values incrementally - when user selects an option and clicks the add button, the selected value is concatenated/appended to a separate input field. The dropdown options can contain complex objects with multiple properties (e.g., formula and description), where selecting an option can populate preview/description fields before appending.
📄️ multiSelect
Description:* Selection control allowing multiple choices from a list. Displays a summary like "3 fields selected" or "1 property selected" based on the number of selections. Selected values are joined using a configurable delimiter.
📄️ listBox
Description:* Editable list control that allows users to add, edit, and remove items from a list. Displays items in a scrollable grid with delete buttons, and provides an input field at the bottom to add new items. Items can be added by typing and pressing Enter or clicking the add button. Supports workflow variable autocomplete in the input field.
📄️ autocomplete
Description:* Text input with searchable dropdown suggestions. Can use static controlOptions or dynamic options from API via autocompleteParams. Supports workflow variable autocomplete when typing %.
📄️ autocompleteWithPlus
Description: Autocomplete field with ability to add new entries directly to the system. When the user types a value that doesn't exist, they can create it as a new entity. Requires* autocompleteParams with entityType to function properly \- the entityType determines what kind of entity can be created (e.g., Commands, MessageTemplates, Devices).