Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
656 views

I have a custom async validator in Angular app that validates the uniqueness of a value. The validator makes HTTP calls to the backend API. I am trying to control the number of API calls by adding ...
Pritam Bohra's user avatar
  • 4,391
0 votes
1 answer
189 views

We have a pretty nested reactive Angular from with all of the FormControls inside a FormGroup which is inside a FormArray. A few of the FormControls have async validators to check for the uniqueness ...
Pritam Bohra's user avatar
  • 4,391
1 vote
0 answers
169 views

I have a weird behavior with async validators from Angular. Here's the context (this is an example, not the best use case here but that's not the issue ^^) : I have a form with a ngModelGroup inside. ...
Jesc6417's user avatar
1 vote
1 answer
27 views

payerGeneralInformationValidators = this.formBuilder.group({ 'payerName': ['', [Validators.required, Validators.pattern('[a-zA-Z 0-9`~!@#$%^&,.\'\"*()_+-]*$'), Validators.maxLength(...
Anna's user avatar
  • 11
1 vote
1 answer
1k views

Form Group colleges$ = this.store.select(getColleges); this.personalFg = this.fb.group({ college: ['',[Validators.required],[this.customValidatorWithinSelection(this.colleges$)]], course: ...
mynameisx's user avatar
  • 241
0 votes
1 answer
785 views

When trying this example from the ngx-formly library, the message that comes from the async validation is not displaying under the field as exprected https://formly.dev/docs/examples/validation/unique-...
HDJEMAI's user avatar
  • 9,848