I have an Observe with an attribute that is an array. Is there a way to use templated event binding in a control to bind to changes in the length of that array?
I have tried the following without any luck:
- '{state} tasks': function() {},
- '{state} tasks length': function() {},
I can bind to all changes on the Observe and look at what has changed, but the attribute that has changed includes the index of the changed array element such as tasks.0
- '{state} change': function() {},
Thanks!