Can anyone explain to me the purpose of arrangedContent.
The docs explains that it can be overriden in subclasses:
The array that the proxy pretends to be. In the default ArrayProxy implementation, this and content are the same. Subclasses of ArrayProxy can override this property to provide things like sorting and filtering.
What I am confused is its relationship with content. I can see in the source that it has a computed property on the content:
arrangedContent: Ember.computed('content', function(){
return this.get('content');
}
I think I am in right in saying that you should never bind to the content but instead bind to the arrayProxy itself.
I am assuming that the same holds for arrangedContent?
Do I just use the arrangedContent to filter the array as I need it and bind to the arrayProxy itself or am I missing something?