Interface UIGroupDropdown

UIGroupDropdown is a dropdown UI element, which allows to specify inner sections.

The associated value of the UIGroupDropdown is the id of the selected entry. If no entry is selected, use undefined or omit the value entry in the UIElementValues.

interface UIGroupDropdown {
    id: string;
    label: string;
    sections: GroupDropdownSection[];
    type: "groupDropdown";
}

Hierarchy

Properties

Properties

id: string
label: string

label defines the group dropdown label to be shown aside the dropdown element.

sections define the possible sections that the group dropdown makes available.

type: "groupDropdown"

Generated using TypeDoc