Represents the private interface for the ComboField class.

interface IComboFieldPrivate<Data = IAnything> {
    dirty: boolean;
    fieldReadonly: boolean;
    incorrect: null | string;
    invalid: null | string;
    loading: boolean;
    onChange: (v: any, config?: { skipReadonly?: boolean }) => void;
    readonly: boolean;
    value: any;
    withContextMenu: undefined | true;
}

Type Parameters

  • Data = IAnything

    The type of data managed by the ComboField.

Hierarchy (View Summary)

Properties

dirty: boolean
fieldReadonly: boolean
incorrect: null | string
invalid: null | string
loading: boolean
onChange: (v: any, config?: { skipReadonly?: boolean }) => void
readonly: boolean
value: any
withContextMenu: undefined | true