aurelia / templating-binding

An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.
MIT License
32 stars 26 forks source link

Checkbox binding issue for array elements #58

Closed shabalin closed 9 years ago

shabalin commented 9 years ago

Please check this http://plnkr.co/edit/0dv37svfh2FflZvLdZ7n out

EisenbergEffect commented 9 years ago

This relates to the fact that you are binding to an undefined property. If you add the selection property to your model, the problem goes away. It's always better to define the properties, not just for Aurelia but also for improved performance in the JS VM.

shabalin commented 9 years ago

thanks a lot, Rob!