Sanitizar angular vs validadores
this.myControl = new FormControl('value', *validation function goes here*, *asynchronous validation function goes here*);
Lonely Loris
this.myControl = new FormControl('value', *validation function goes here*, *asynchronous validation function goes here*);
this.slideOneForm = formBuilder.group({
firstName: ['', Validators.compose([Validators.maxLength(30), Validators.pattern('[a-zA-Z ]*'), Validators.required])],
lastName: ['', Validators.compose([Validators.maxLength(30), Validators.pattern('[a-zA-Z ]*'), Validators.required])],
age: ['', AgeValidator.isValid]
});
this.myForm = new FormGroup({
firstName: new FormControl('Josh'),
lastName: new FormControl('Morony')
});