Angular – Material – Focus on first field when the form opens
I found a website that gave several ways to approach this. Here is what worked for me.
1 | <form [formGroup]="policyTypeCodeForm" > |
In the first input textbox I added #txtCode. This is a control name.
Interesting parts of the code
1 | import { Component, OnInit, ViewChild, ElementRef} from '@angular/core'; |