Member Junction
    Preparing search index...

    SharedViewWarningDialogComponent - Warning dialog when saving changes to a shared view

    Shows when a user attempts to save changes to a view that is shared with other users. Presents three options:

    • Update Shared View: save changes affecting all users
    • Save As My Copy: create a personal copy with the changes
    • Cancel: abort the save
    <mj-shared-view-warning-dialog
    [IsOpen]="showSharedWarning"
    [ViewName]="currentView.Name"
    (Action)="onSharedViewAction($event)"
    (Cancel)="showSharedWarning = false">
    </mj-shared-view-warning-dialog>
    Index

    Constructors

    Properties

    Action: EventEmitter<SharedViewAction> = ...
    Cancel: EventEmitter<void> = ...
    IsOpen: boolean = false
    ViewName: string = ''

    Methods