I have an ArrayController which is periodically updated. It has a sorted computed property which keeps things in order. I\'m trying to use a
ArrayController
sorted
For the sake of completeness to @sly7_7's correct answer, here is a version with CollectionView, see http://jsfiddle.net/pangratz666/ctPAA/.
CollectionView
Handlebars:
JavaScript:
App.itemController = Em.ArrayController.create({ sortProperties: 'id'.w(), // random order content: Em.A([ ... ]) });