Skip to content

Instantly share code, notes, and snippets.

@ppcano
Created December 6, 2011 10:32
Show Gist options
  • Save ppcano/1437709 to your computer and use it in GitHub Desktop.
Save ppcano/1437709 to your computer and use it in GitHub Desktop.
Updating View after didInsertElement
ControlledView = SC.Mixin.create({
isInsertedElement: false,
didInsertElement: function(){
set(this, 'isInsertedElement', true);
}
});
SC.addObserver(view, 'isInsertedElement' ,function() {
var deviceHeight = $(window).height();
var headerHeight = $('#header').outerHeight();
var footerHeight = $('#footer').outerHeight();
var availableHeight = deviceHeight - headerHeight - footerHeight;
var tabs = get(self, 'tabViews');
tabs.forEach( function(item ) {
set( item, 'contentHeight', availableHeight );
});
var deviceWidth = $(window).width();
TestView.View1.statechart.sendAction('selectedTabItem', 0);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment