Created
November 15, 2011 20:31
-
-
Save ppcano/1368239 to your computer and use it in GitHub Desktop.
UI Controller observes a view to set properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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