afterAppendView // fires when the view is visible on the screen
afterViewRender // might fire BEFORE the view is visisble on the screen
Use it like this:
SC.Application.getLayout().on('afterAppendView', function () {
// your stuff here
});
afterAppendView // fires when the view is visible on the screen
afterViewRender // might fire BEFORE the view is visisble on the screen
Use it like this:
SC.Application.getLayout().on('afterAppendView', function () {
// your stuff here
});