Interface ComboBoxProps

interface ComboBoxProps {
    value?: any;
    schema?: DataSchema;
    valueSpec?: ValueSpecType;
    variablesSchema?: any;
    variablesOnly?: boolean;
    options?: ComboBoxOption[];
    optionFactories?: ComboBoxOptionsFactory[];
    refsToIgnoreClick?: PopperRefElementType[];
    valueComponent?: Element;
    onChange: FnOnValueChangeType;
    placeholder?: string;
    hideSearch?: boolean;
    isRequired?: boolean;
    disabled?: boolean;
    className?: string;
    autoOpen?: boolean;
    onOpen?: FnInitEditModeType;
    onClose?: FnCloseEditModeType;
    topDropdownPanelComponent?: Element;
}

Hierarchy (View Summary, Expand)

Properties

value?: any
schema?: DataSchema
valueSpec?: ValueSpecType
variablesSchema?: any
variablesOnly?: boolean

Do not let entering custom values - only allow selecting from the variables.

options?: ComboBoxOption[]
optionFactories?: ComboBoxOptionsFactory[]
refsToIgnoreClick?: PopperRefElementType[]
valueComponent?: Element
placeholder?: string
hideSearch?: boolean
isRequired?: boolean
disabled?: boolean
className?: string
autoOpen?: boolean
topDropdownPanelComponent?: Element
MMNEPVFCICPMFPCPTTAAATR