Answers for "how to close mat dialog on click in angualar"

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

Code answers related to "how to close mat dialog on click in angualar"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language