import { ElementRef, ViewChildren } from '@angular/core'; class MyComponent { @ViewChildren('formRow') rows: ElementRef; addNewRow() { this.rows.first().nativeElement.focus(); } }