didInsertElement is the right place, but if you want to make sure that the rendering queue is completely empty, you can also listen to the afterRender event, something like this:
App.ApplicationView = Ember.View.extend({ didInsertElement: function() { Ember.run.scheduleOnce('afterRender', this, 'processChildElements'); }, processChildElements: function() {
Hope this helps.
intuitivepixel Aug 04 '13 at 22:57 2013-08-04 22:57
source share