Member Junction
    Preparing search index...

    DuplicateViewDialogComponent - Modal for duplicating a view with a custom name

    Shows the source view name, allows renaming the copy, and displays a metadata summary (filters, columns, sorts) of what will be duplicated.

    <mj-duplicate-view-dialog
    [IsOpen]="showDuplicateDialog"
    [SourceViewName]="viewToDuplicate?.Name"
    [Summary]="duplicateSummary"
    (Duplicate)="onDuplicateConfirmed($event)"
    (Cancel)="showDuplicateDialog = false">
    </mj-duplicate-view-dialog>

    Implements

    • OnChanges
    Index

    Constructors

    Properties

    Cancel: EventEmitter<void> = ...
    Duplicate: EventEmitter<DuplicateViewEvent> = ...
    IsOpen: boolean = false
    NameTouched: boolean = false
    NewName: string = ''
    SourceViewName: string = ''
    Summary: ViewConfigSummary | null = null

    Methods

    • A callback method that is invoked immediately after the default change detector has checked data-bound properties if at least one has changed, and before the view and content children are checked.

      Parameters

      • changes: { [propName: string]: SimpleChange<any> }

        The changed properties.

      Returns void