DOJO选项卡容器容器节点高度为0px

wnrlj8wa  于 2022-12-16  发布在  Dojo
关注(0)|答案(2)|浏览(188)

我正在以编程方式创建DOJO TabContainer和要添加到该tabContainer的ContentPanes。每个contentPanes都包含我的自定义小部件。部分代码如下所示。当显示选项卡时,第一个选项卡上的containerNode的高度为0 px,因此即使第一个选项卡上有完全加载的小部件,但它不会显示在浏览器中。这在1.6中可以正常工作。我把dojo 1.6换成了1.9.3,遇到了这个问题。有什么想法吗?

var availableWidgets = { 
'Name': {title: 'Name', widget:'test.ui.NameWidget'},
'Stats':    {title: 'Stats', widget:'test.ui.StatsWidget'}

};

postCreate: function(){ 
var tabContainer = new dijit.layout.TabContainer({controllerWidget: "dijit.layout.TabController"}, this.pContainerDiv);                     
tabContainer.set('class', 'claro');
tabContainer.set('doLayout', false);
tabContainer.set('style', "width: 100%; height: 100%;"); 

dojo.forEach(this.menuItems, dojo.hitch(this, function(menuItem, index){
    var widgetInfo = availableWidgets[menuItem];
if(widgetInfo != null){
    var contentPaneId = portletNamespace + pContext.persistentId + menuItem + 'ContentPane';

    var contentPane = new dijit.layout.ContentPane({
    id: contentPaneId,
            title: widgetInfo.title,
    selected: currentSelectedItem == menuItem,
    closable: false,
    style: 'height:100%;padding: 15px;',
    onShow: dojo.hitch(this, function(){                               
       //can no longer do this in 1.9
       //dojo.require(widgetInfo.widget);                             
       if (widgetInfo.widget == 'test.ui.NameWidget') {
           dojo.require("test.ui.NameWidget");
       } else if (widgetInfo.widget == 'test.ui.StatsWidget') {
           dojo.require("test.ui.StatsWidget");
       } 

       var currentView = this.widgets[widgetInfo.title];
       if(!currentView){
           currentView = eval('new ' + widgetInfo.widget + '(this.params)');
           currentView.placeAt(contentPaneId, 'last'); 

           // startup called by (dijit/_WidgetBase in 1.9.3) by placeAt above
           // currentView.startup(); 

           this.widgets[widgetInfo.title] = currentView;                                    
           }                                
            })
    });                   
        tabContainer.addChild(contentPane);
    }
}));

}

rkue9o1l

rkue9o1l1#

我会尝试在contentpane上添加小部件后调用.resize(),这样应该可以正确地调整contentpane的大小;另一种选择是在contentPane上添加子控件后调用tabcontainer上的.resize()。

4smxwvx5

4smxwvx52#

我有一个修正。在将内容窗格添加到选项卡容器之前,我现在调用:

tabContainer.startup();

在使用dojo 1.6时,我是在所有内容窗格都添加到选项卡容器之后执行此操作的,在此之前调用它可以修复高度问题,并使用dojo 1.9.3正确呈现所有选项卡。

相关问题