UIControlElementOption


An option to display in a control element.

Control elements are elements that allow the user to select one or more values from a list of options. This includes:

The option can be disabled by setting the disabled property to true.

Examples

{ label: "Option A", value: "optionA" }

A disabled option

{ label: "Option A", value: "optionA", disabled: true }

Properties

label

label: string


value

value: string


disabled?

optional disabled: boolean

Last updated

Was this helpful?