Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a model like:

TestModel = Em.Object.create({
    id:'',
    name:''
})

and a object ArrayController like:

testArrayController = Em.ArrayController.create({
    content: [],
    init: function() {
        //push some object TestModel
    }
});

I want to remove some objects depend on id property of a object in content array. How to do that?

share|improve this question

1 Answer

up vote 8 down vote accepted

I would use a combination of findProperty and removeObject, see http://jsfiddle.net/pangratz666/rXN4E/:

App.testArrayController = Em.ArrayController.create({
    content: [],

    removeItem: function(propName, value){
        var obj = this.findProperty(propName, value);
        this.removeObject(obj);
    }
});

App.testArrayController.removeItem('id', 42);
share|improve this answer
FYI: this won't work if you are using Ember Data to fetch the data for the controller - the array is immutable. – outside2344 Aug 10 '12 at 4:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.