I would like to avoid white spaces/empty spaces in my angular 2 form? Is it possible? How can this be done?
In your app.component.html
In your app.componen.ts file
import { Validators, FormGroup, FormControl } from "@angular/forms";
signupForm: FormGroup;
ngOnInit(){
this.signupForm = new FormGroup({
name: new FormControl("", [
Validators.required,
Validators.pattern("^[a-zA-Z]+$"),
Validators.minLength(3)
])
})