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

    Interface ComboBoxContextProps

    interface ComboBoxContextProps {
        allowCustom: boolean;
        isDropdownOpen?: boolean;
        openDropdown: () => void;
        closeDropdown: () => void;
        topDropdownPanelComponent?: Element;
        scopedComboboxId: string;
        value?: any;
        onValueChange?: FnOnValueChangeType;
        schema?: DataSchema;
        valueSpec?: ValueSpecType;
        variablesSchema?: any;
        variablesOnly?: boolean;
        options?: ComboBoxOption[];
        optionFactories?: ComboBoxOptionsFactory[];
        refsToIgnoreClick?: PopperRefElementType[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    allowCustom: boolean
    isDropdownOpen?: boolean
    openDropdown: () => void
    closeDropdown: () => void
    topDropdownPanelComponent?: Element
    scopedComboboxId: string
    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[]