Hey,
I would like to check whether a field was changed during edition.
For example I have a dropdown field. I want to send a notification only when the data in this field was changed. There is a value named “currentlyChanged” but it seems to be not working (it’s always false).
Please let me know if there a way to achieve that.
Best regards,
Marcin
EDIT: I found a way to do this. There is a parameter called “originalValue”. I found that it contains the previous value of the field. So I can check if the current “value” is equal to “originalValue” and if not I know that the value was changed.
It’s a little bit odd that the parameter with previous value is called “originalValue”, because there is another parameter called literally “previousValue” that always contains the current value. Maybe it’s some kind of a bug? Or maybe that’s the cause why parameter “currentlyChanged” is always “false”?