Member Junction
    Preparing search index...

    Event payload for the view-type change lifecycle. Emitted (cancelable) via EntityViewerComponent.BeforeViewTypeChange and (notification) via EntityViewerComponent.AfterViewTypeChange. A handler may set Cancel = true on the Before event to veto the switch (mirrors the grid's BeforeRowClick / BeforeCellEdit cancelable pattern).

    interface ViewTypeChangeEventArgs {
        Cancel: boolean;
        DriverClass: string;
        PreviousViewTypeID: string | null;
        ViewTypeID: string;
    }
    Index

    Properties

    Cancel: boolean

    Set to true in a EntityViewerComponent.BeforeViewTypeChange handler to veto the switch.

    DriverClass: string

    The descriptor DriverClass / Name being switched to (e.g. "ClusterViewType").

    PreviousViewTypeID: string | null

    The MJ: View Types row ID being switched FROM (null on the first selection).

    ViewTypeID: string

    The MJ: View Types row ID being switched to.