The behavior I want is to change the selection in order to preserve its model
I though about using observable, but I have another problem
my view looks something like this.
{{#each item in model.Items}} <div class="select"> {{view Ember.Select content=typesLookup selection=type prompt="Select Type" }} </div> {{/each}}
therefore, if I went with a solution for observables, then I want to also know which specific element was changed to update it.
source share