Member Junction
    Preparing search index...

    Generic cancelable event payload used by the workspace's Before… lifecycle outputs. Mirrors the house pattern (CancelableEvent<T> in @memberjunction/ng-clustering and the grid's BeforeRowClick): a handler sets Cancel = true on the args object to veto the default operation that would otherwise follow.

    interface WorkspaceCancelableEvent<T = unknown> {
        Cancel: boolean;
        Data: T;
    }

    Type Parameters

    • T = unknown

      the shape of the operation-specific payload carried on Data.

    Index

    Properties

    Properties

    Cancel: boolean

    Set to true in a Before… handler to cancel the pending operation.

    Data: T

    The operation payload (e.g. the view being saved / deleted).