I am new to angular 6 ,Here I am trying to reset the form after submitting the data.
Everything works fine but when I reset the form after successful data submit to
You would need to reset as below:
In your html:
In .ts:
CreateMember(value,formDirective:FormGroupDirective){
...
formDirective.resetForm();
this.myForm.reset();
}
Material checks the validity of FormGroupDirective
and not of FormGroup
hence resetting FormGroup
does not reset FormGroupDirective
.
Issue reported here too: https://github.com/angular/material2/issues/9347