Skip to content

Instantly share code, notes, and snippets.

@ppcano
Created November 15, 2011 20:31
Show Gist options
  • Save ppcano/1368239 to your computer and use it in GitHub Desktop.
Save ppcano/1368239 to your computer and use it in GitHub Desktop.
UI Controller observes a view to set properties
SC.addObserver(view, 'element' ,function() {
var element = view.get('element');
if ( element ) {
var deviceHeight = $(window).height();
var headerHeight = $('#header').outerHeight(); // null
var footerHeight = $('#footer').outerHeight(); // null
var availableHeight = deviceHeight - headerHeight - footerHeight;
var tabs = get(self, 'tabViews');
tabs.forEach( function(item ) {
set( item, 'scrollableHeight', availableHeight );
});
}
});
// this is applied on the UI Controller
SC.addObserver(view, 'isInsertedElement' ,function() {
var deviceHeight = $(window).height();
var headerHeight = $('#header').outerHeight(); // NOW not null
var footerHeight = $('#footer').outerHeight(); // NOW not null
var availableHeight = deviceHeight - headerHeight - footerHeight;
var tabs = get(self, 'tabViews');
tabs.forEach( function(item ) {
set( item, 'scrollableHeight', availableHeight );
});
});
// create a mixin for the view
ControlledView = SC.Mixin.create({
isInsertedElement: false,
didInsertElement: function(){
set(this, 'isInsertedElement', true);
console.log( ' hola' );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment