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
The trick is to use both focus and select together:
this.(element).nativeElement.focus(); this.(element).nativeElement.select();