Answers for "close all dialog angular material"

2

mat dialog disable close

this.dialog.open(DialogComponent, { disableClose: true });
Posted by: Guest on March-04-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