Is there any way we can set different validation behavior for different validators?
for example,
{
field1: ['', [Validators.email, Validators.required]],
field2: ['', Validators.required],
},
Here, field1 should validate the input on change, and field2 should validate the input on submit.
Is it possible to set behaviour for individual field of a form?