AngularTS
    Preparing search index...

    Interface NgModelOptions

    Configuration for ngModel behavior.

    interface NgModelOptions {
        allowInvalid?: boolean;
        debounce?: number | Record<string, number>;
        getterSetter?: boolean;
        timeSecondsFormat?: string;
        timeStripZeroSeconds?: boolean;
        timezone?: string;
        updateOn?: string;
    }
    Index

    Properties

    allowInvalid?: boolean

    Whether to allow invalid values

    debounce?: number | Record<string, number>

    Delay in milliseconds or event-specific debounce times

    getterSetter?: boolean

    Enables getter/setter style ngModel

    timeSecondsFormat?: string

    Time display format including seconds

    timeStripZeroSeconds?: boolean

    Whether to remove trailing :00 seconds

    timezone?: string

    Timezone used for Date objects

    updateOn?: string

    Space-separated event names that trigger updates