Roo.layout.North = function(mgr, config){ Roo.layout.Region.call(this, mgr, config, "north", "n-resize"); if(this.split){ this.split.placement = Roo.SplitBar.TOP; this.split.orientation = Roo.SplitBar.VERTICAL; this.split.el.addClass("x-layout-split-v"); } var size = config.initialSize || config.height; if(typeof size != "undefined"){ this.el.setHeight(size); } }; Roo.extend(Roo.layout.North, Roo.layout.SplitRegion, { orientation: Roo.SplitBar.VERTICAL, getBox : function(){ if(this.collapsed){ return this.collapsedEl.getBox(); } var box = this.el.getBox(); if(this.split){ box.height += this.split.el.getHeight(); } return box; }, updateBox : function(box){ if(this.split && !this.collapsed){ box.height -= this.split.el.getHeight(); this.split.el.setLeft(box.x); this.split.el.setTop(box.y+box.height); this.split.el.setWidth(box.width); } if(this.collapsed){ this.updateBody(box.width, null); } Roo.layout.Region.prototype.updateBox.call(this, box); } });