0

我有一个如下所示的“vbox”面板,

 {xtype:'panel',
    id:'srchResPanel',
    layout:'vbox',
    scrollable:false,

    items:[
     {
       xtype:'toolbar',
       docked:'top',
       height:46,
       style:'border-top-left-radius:10px;',
       title:'some title'
         }

    ]}

我正在尝试将 2 个面板动态添加到上面的面板中,它们如下所示

var header  =  Ext.create('Ext.Panel', {
         height:40,
         width:'100%',

    scrollable: {
        direction: 'horizontal',
        directionLock: true
    },

         layout:'hbox',
     });

    header.setHtml('<div style="font-size:15px;>header</div>');

 var grid = Ext.create('Ext.Panel', {
         width:'100%',

    scrollable: {
        direction: 'horizontal',
        directionLock: true
    },
         layout:'vbox',

     });
Ext.getCmp('srchResPanel').add(header);
Ext.getCmp('srchResPanel').add(grid);

当我将上述两个面板添加到顶部面板时,仅显示第一个面板(标题),第二个面板(网格)未显示。

任何帮助表示赞赏。提前致谢。

4

1 回答 1

0

您还需要height为第二个面板指定。

于 2013-02-02T14:31:50.883 回答