3

I am using mat-menu to display a form and need to change focus between inputs on the tab keypress event. But when I press tab, the mat-menu closes.

Example:

https://stackblitz.com/edit/angular-u5qbkt?file=src%2Fapp%2Fapp.module.ts

JohnRW
  • 748
  • 7
  • 22
TheBallkar
  • 68
  • 7

1 Answers1

6

In form tag write this line (keydown.tab)="$event.stopPropagation()"

like this->

 <form (keydown.tab)="$event.stopPropagation()" [formGroup]="form" (ngSubmit)="submit()" (click)="stop($event)" class="formValueGenerator" autocomplete="off">
Vijay Prajapati
  • 738
  • 1
  • 7
  • 20