Dijit Tabcontainer inside a custom widget-Tablist width runs too long
问题 I have a templated custom widget that inherits from dijit.layout._LayoutWidget, dijit._Container, and dijit._Templated which gives my widget native Widget support for resizing, etc. All I need is a TabContainer, which is sized to the size of widget. Here is my widget. <div dojoAttachPoint="containerNode"> <div dojoType="dijit.layout.TabContainer" tabPosition="top" style="width:100%;height:100%" > <div dojoType="dijit.layout.ContentPane" title="tab" selected="true"> hello </div> </div> </div>