Reputation: 1344
How Can I remove all the validations on a FormControl ( which is a component in this case ).
I declared the FormControl like this in the constructor :
this.form = formBuilder.group({
fileUploadControl: new FormControl()
});
Upvotes: 1
Views: 82
Reputation: 29715
Using clearValidators()
this.form.get('fileUploadControl').clearValidators();
Upvotes: 4