Angular 2+ validation patterns, syntax and properties.
I have an Angular 6 reactive form and trying to validate a password with regex pattern and it doesn't work. <…
angular angular6 angular-reactive-forms angular-validation angular-validatorI'm starting to create my first Angular 4 app. I'm testing form validation. I created a template-driven form and I added …
angular angular-forms angular-validationI'm trying to create a validator for date input. so I've wrote this piece of code but it's not working …
angular angular-validationI upgraded to rc.4 and am trying to use the new forms-api. This is what I get: "TypeError: this.form.…
angular angular2-forms angular-validationI am using Angular 4. I want to allow the zipCode input field to only take an input of length 5 or 7 …
angular angular4-forms angular-validationI'm new to angular. I was trying something and got stuck. In my form, I want to show server validation …
angular validation angular-validation server-side-validationI am wondering of a way to validate required checkbox in the same style angular material handles validation for other …
angular typescript angular-material angular-validationThere is a custom input component and it is used in a reactive form with validation: @Component({ moduleId: module.id.…
angular angular-reactive-forms angular-forms angular-validationI have a reactive form with 2 controls (port_start and port_end) that have the following requirements: Both must have …
angular angular-reactive-forms angular-validationI got this validator: export const PasswordsEqualValidator = (): ValidatorFn => { return (group: FormGroup): Observable<{[key: string]: boolean}> => { const …
angular typescript angular2-formbuilder angular-validation