1

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()
});
Brahim LAMJAGUAR
  • 1,254
  • 5
  • 19
  • 28

1 Answers1

4

Using clearValidators()

this.form.get('fileUploadControl').clearValidators();
Amit Chigadani
  • 28,482
  • 13
  • 80
  • 98