Search code examples
angularformbuilderform-controlangular2-validators

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()
});

Solution

  • Using clearValidators()

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