In Angular2 how can I set binding on element focus. I don\'t want to set it with elementRef. I think in AngularJS there is ngFocus directive In Angular2 there is no such dir
From @MrBlaise I took the setTimeout snippet which made the following work for me.
import { ElementRef, ViewChild } from '@angular/core'; ... @ViewChild('searchInput') private searchInput: ElementRef; ... setTimeout(() => this.searchInput.nativeElement.focus(), 0);