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> Copy
<mj-duplicate-view-dialog [IsOpen]="showDuplicateDialog" [SourceViewName]="viewToDuplicate?.Name" [Summary]="duplicateSummary" (Duplicate)="onDuplicateConfirmed($event)" (Cancel)="showDuplicateDialog = false"></mj-duplicate-view-dialog>
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.
The changed properties.
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.
Example