Вы можете программно вызывать метод фокусировки HTML-элемента всякий раз, когда вам нужно!
Попробуйте:
Шаблон:
<div>
<button mat-raised-button color="primary" (click)="inEdit=true;focus()">Edit</button>
<div style="height: 50px; width: 100%" (click)="inEdit=true">
<mat-form-field *ngIf="inEdit">
<input #ref matInput >
</mat-form-field>
</div>
</div>
TS:
import {Component, ViewChild, ElementRef } from '@angular/core';
@Component({
selector: 'input-overview-example',
styleUrls: ['input-overview-example.css'],
templateUrl: 'input-overview-example.html',
})
export class InputOverviewExample {
@ViewChild("ref",null) refField: ElementRef;
focus(): void {
setTimeout(() => {
this.refField.nativeElement.focus();
}, 100);
}
}