Answers for "material dialog disable close"

2

mat dialog disable close

this.dialog.open(DialogComponent, { disableClose: true });
Posted by: Guest on March-04-2021
0

material dialog disable close

// disableclose 'true' but if you try to backdrop click it diesn't lose 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-07-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language