x4js - v2.2.49
    Preparing search index...

    Interface EvDataChange

    Represents a base event interface for the framework. All custom events should implement this interface to ensure consistent behavior regarding event propagation and default action prevention.

    interface EvDataChange {
        change_type: "data" | "change" | "update" | "create" | "delete";
        context?: any;
        defaultPrevented?: boolean;
        id?: any;
        propagationStopped?: boolean;
        source?: CoreElement;
        type?: string;
        preventDefault?(): void;
        stopPropagation?(): void;
    }

    Hierarchy (View Summary)

    Index
    change_type: "data" | "change" | "update" | "create" | "delete"
    context?: any
    defaultPrevented?: boolean
    id?: any
    propagationStopped?: boolean
    source?: CoreElement
    type?: string
    • Stops the propagation of the event to further listeners. Subsequent listeners for the same event on the same EventSource will not be called.

      Returns void