in ember, I have a list of cars, and for each cars the same set of colors.
I'd like to present the user with a list of cars and the ability to tick the color he wants for each.
I have built the following example http://jsfiddle.net/eH9xH/7/ but can't figure out how to avoid the color being selected for each and every car. Can you help ?
Thanks, and sorry for the newbie question.
<script type="text/x-handlebars" data-template-name="application">
{{#each App.availableCopies.content }}
<h1>{{ this.value }}</h1>
{{each App.availableTags.content itemViewClass="App.OneTagView"}}
{{/each}}
</script>
<script type="text/x-handlebars" data-template-name="one-tag">
<label>
{{ view Ember.Checkbox checkedBinding="isChecked" }}
{{ name }}
</label>
</script>