Using the didInsertElement hook, I\'m able to do some jQuery plugin initialization that is needed. However, if a property changes, Ember re-renders the view, but do
didInsertElement
You could also hook into the childViews array and observe changes on that.
Something like this works but I don't think it's a good performance practice.
childViewsArrayDidChange: function() { console.log("childViews-Array did change"); }.observes('childViews.@each')