Interface IComboWidgetOptions

interface IComboWidgetOptions {
    callback?: WidgetPanelCallback;
    label?: string;
    property?: string;
    type?: string;
    values: string[] | ((widget, node) => string[]);
}

Hierarchy (view full)

Properties

label?: string
property?: string
type?: string
values: string[] | ((widget, node) => string[])

Type declaration