Replies: 1 comment
-
It's difficult to tell what the proper solution would be since your description is a bit vague, but here's a suggestion to try:
|
Beta Was this translation helpful? Give feedback.
-
It's difficult to tell what the proper solution would be since your description is a bit vague, but here's a suggestion to try:
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Let's assume I have 2 required input fields A and B with form level validation on submit.
When I type on A "hello". I set the B value to "world" via
form.setFieldValue(B, "world");
When I try to submit the form with empty fields, I get the error, which is fine.
I type on A "Hello" -> B "World".
A's error disappears, but B's stays there. And I can't submit the form.
my current somehow hacky solution is:
Beta Was this translation helpful? Give feedback.
All reactions