I am using ember 1.0 pre and have a basic array controller that starts with the default sort property 'id'
PersonApp.PersonController = Ember.ArrayController.extend({ content: [], sortProperties: ['id'], updateSort: function(column) { this.set('sortProperties', column); } });
I would like to install this dynamically and update dom for free. But when I make a simple setter (shown above), it does not update anything in my view or on dom.
If I need the ability to dynamically update it, how can I do this?
Toran billups
source share