Replies: 1 comment
-
Modify your calls to avoid running them: field.removeValue(myIndex, { dontRunListeners: true });
field.moveValue(source, destination, { dontRunListeners: true}); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
listeners.onChange
happens to be fired afterfield.removeValue()
andfield.moveValue()
, effectively running the onChange function on the next array item, which is weird and intuitive.This makes it difficult to work with fieldComponents.
Beta Was this translation helpful? Give feedback.
All reactions