Answers for "angular material dialog close pass data"

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 "Javascript"

Browse Popular Code Answers by Language