Reputation: 4016
I have an Angular 5
project and I want to set an autofocus to any item on the page when it loads.
Closest I have got is in the following plunka
https://plnkr.co/edit/OfdnZzGx0KgbCMh3IlE4?p=preview
The only issue is that I'm not using Directives
I'm using Components
, Models
and 'Services'
I want to try and stay away from Directives
if possible but I cant get my pluka to work using these.
Any suggestions
Upvotes: 2
Views: 14270
Reputation: 86740
Why not to simply use autofocus
attribute on input filed like this -
<input type="text" name="firstName" autofocus>
Upvotes: 4