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
With 0.2.4 you used to be able to bind {{value[0]}} or this.$.element.bindProperty('value', new PathObserver(this.value, 0)); Since 0.3.0 that does not appear to work.
The text was updated successfully, but these errors were encountered:
It correctly renders the value at array[0], and observes the change when you click on the element.
If you're still seeing this, please provide a code sample that reproduces the bug.
Ah, yes. Sorry, this probably needs to be doc'd. The path '0' is now a syntax error. The correct syntax is '[0]'. The idea here is that paths are as if they followed a JS identifier and support member expressions with constants and property expressions.
With 0.2.4 you used to be able to bind
{{value[0]}}
orthis.$.element.bindProperty('value', new PathObserver(this.value, 0));
Since 0.3.0 that does not appear to work.The text was updated successfully, but these errors were encountered: