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.
I might be missing something, but it seems like this does not work in all cases :
If you have an attribute like this one:
objArray:[{name:"foo"},{name:"bar"}]
In a template , this works
{{objArray.0.name}}
but this does not
{{objArray[0].name}}
(throws error : Invalid expression syntax: objArray[0].name)
Of course you should also be able to nest an expression inside it like this {{ myproperty[ myotherproperty * 5 ] }}
The text was updated successfully, but these errors were encountered: