Brahim LAMJAGUAR
Brahim LAMJAGUAR

Reputation: 1344

Remove all the validations on a FormControl

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

Answers (1)

Amit Chigadani
Amit Chigadani

Reputation: 29715

Using clearValidators()

this.form.get('fileUploadControl').clearValidators();

Upvotes: 4

Related Questions