Answers for "angular dialog on close"

0

close mat dialog programmatically

@Component({/* ... */})
export class YourDialog {
  constructor(public dialogRef: MatDialogRef<YourDialog>) { }

  closeDialog() {
    this.dialogRef.close('Pizza!');
  }
}
Posted by: Guest on April-21-2021
0

angular material dialog close pass data

@HostListener('window:keyup.esc') onKeyUp() {
    this._dialogRef.close(this.socios);
  }
  ngOnInit(): void {
    this._dialogRef.disableClose = true;
    this._dialogRef.backdropClick().subscribe(_ => {
      this._dialogRef.close(this.socios);
    })
  }
Posted by: Guest on March-04-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language