My form contains <input type="text">
elements and I've noticed that ControlGroup.valueChanges
is triggered during initial data binding when using [ngFormModel]
and ngControl
.
As a result, it gives the impression to the user that the form has already been modified upon loading.
Should I consider using a different observable to accurately track changes made by the user?
I'm working with Angular 2 RC3 and importing the following version for forms:
import {ControlGroup, Validators, FormBuilder} from '@angular/common';