Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to make http call in customValidator #1170

Open
aditya-sawant-dev opened this issue Feb 10, 2023 · 1 comment
Open

Unable to make http call in customValidator #1170

aditya-sawant-dev opened this issue Feb 10, 2023 · 1 comment

Comments

@aditya-sawant-dev
Copy link

I'm submitting a



[x] Feature Request / Proposal

I'm using


NG Dynamic Forms Version: `15.0.0`

[x] Basic UI
[ ] Bootstrap UI  
[ ] Foundation UI
[ ] Ionic UI
[ ] Kendo UI
[ ] Material  
[ ] NG Bootstrap
[ ] Prime NG

Description

When i am creating custom validator using following code :

export function myCustomValidator(control: AbstractControl): ValidationErrors | null {
const hasError = control.value ? (control.value as string).startsWith("abc") : false;
return hasError ? {myCustomValidator: true} : null;
}

new DynamicInputModel({
id: "myInput",
label: "My Input",
validators: {
myCustomValidator: {
name: myCustomValidator.name,
args: null
}
}
})

Now in myCustomValidator Method I am unable to do http call. So we must include a feature that allows us to do http call in custom validator.

In above dynamicinputmodel there is customvalidator object which contains "args". What value can we provide in args ?

Thank you.

@Karamuto
Copy link
Collaborator

Hello @aditya-sawant-dev ,

I am pretty sure you need to add this kind of validator to the "asyncValidators" property instead of the "validators" property.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants