I am working on some editable views in Ember, click here to see my jsbin and i have an issue anytime i want to edit a current view. As you can see the problem is that once i click to edit a single view, all the other transactions become editable, i don't want this, i want that only a single item becomes editable, not all of them. I don't know what i am doing wrong, from the other hand if i delete one , it works well.
in My controller this is the function:
edit:function(ob){
this.map(function(item,index){
if(ob.id===item.id)
Em.set(item,'editable',true);
});
},