You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found this way addBinding(...).controller.value.emitter.on('beforechange', () => ...)
But why not possible just addBinding(...).on('beforechange', () => ...) ?
The text was updated successfully, but these errors were encountered:
Hello,
I thought to ask a close question. Probably, I could ask in this issue.
To implement a history feature, we need to get an old value of a property before change. However, it would be more handy to get new and old values in a single event on binding change.
Is it possible to get an old value in the current version? If not, this is a feature request.
I found this way
addBinding(...).controller.value.emitter.on('beforechange', () => ...)
But why not possible just
addBinding(...).on('beforechange', () => ...)
?The text was updated successfully, but these errors were encountered: