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
{{ message }}
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
can changes in the value of input nodes' value property be observed by a PathObserver?
The answer is presently: no. Long term, form node values probably should Object.getNotifier(node).notify(), but it's not obvious to me there's a great way to polyfill this. E.g. having to inspect whether all objects along an observed path are input nodes is likely to slow down all observations in a way which probably isn't worth the trade off.
My suggestion is the same as adams. Create an intermediate object and bind input.value to it. Then bind that object to some place else.
however, if I have this model, where the input property is a reference to the element:
model = {input: input};
a binding to input.value does not work:
Can this be fixed?
The text was updated successfully, but these errors were encountered: