if(!this.doLayout){return; }// position and size the titles and the container nodevar titleAlign = this.tabPosition.replace(/-h/,"");
var children = [{ domNode: this.tablist.domNode, layoutAlign: titleAlign },
{ domNode: this.containerNode, layoutAlign: "client"}];
dijit.layout.layoutChildren(this.domNode, this._contentBox, children);
// Compute size to make each of my children.// children[1] is the margin-box size of this.containerNode, set by layoutChildren() call abovethis._containerContentBox = dijit.layout.marginBox2contentBox(this.containerNode, children[1]);
if(this.selectedChildWidget){this._showChild(this.selectedChildWidget);
if(this.doLayout&&this.selectedChildWidget.resize){this.selectedChildWidget.resize(this._containerContentBox);
}}