Integration App React - v2.21.0
    Preparing search index...

    Interface ComboBoxProps

    interface ComboBoxProps {
        value?: any;
        onValueChange?: FnOnValueChangeType;
        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)

    Index

    Properties

    value?: any
    onValueChange?: FnOnValueChangeType
    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