[]
type ComboBoxFieldProperties = ChoiceFieldProperties & object;
Defines properties of a ComboBoxField.
optional defaultText?: string;
The default value of this ComboBoxField as a string.
The behavior varies based on the 'editable' property:
optional defaultValue?: number;
The default value of ComboBoxField, value is specified as index of selected item.
optional editable?: boolean;
Indicating whether the combo box includes an editable text box as well as a drop-down list.
optional text?: string;
The string value of this ComboBoxField.
The behavior varies based on the 'editable' property:
type: "combobox";
optional value?: number;
The value of ComboBoxField, value is specified as index of selected item.