Is it possible to bind the childViews property to one within the controller? Thus,
App.DashboardView = Ember.ContainerView.extend({
tagName: 'section',
childViewsBinding: 'controller.viewChildren',
...
});
And within the controller, a view object is dynamically created (qryView) and then appended to the controller's array:
this.get('viewChildren').pushObject(qryView.create());
I've been trying this but I don't see any change in the containerView's rendering after the array is populated.
Bryan