Interface ComboBoxOptionsProps

interface ComboBoxOptionsProps {
    value?: any;
    schema?: DataSchema;
    valueSpec?: ValueSpecType;
    variablesSchema?: any;
    variablesOnly?: boolean;
    options?: ComboBoxOption[];
    optionFactories?: ComboBoxOptionsFactory[];
    refsToIgnoreClick?: PopperRefElementType[];
}

Hierarchy (View Summary)

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[]