I\'m looking at adding some basic email validation to check that the user has put in a correct email address. Currently using the method below, the validation updates as the
You may
[class.has-error]="!form.controls['ctrlEmailAddress'].valid"
This will add has-error class as soon as you will change model. So basically you don't need to blur to have validation check.
This solved problem with angular 2.0.0 beta ;)