Ext中如何将TabPanel放入到EditorGridPanel的一个面板中啊

2025-01-06 09:41:51
推荐回答(3个)
回答1:

var classTabs = new Ext.TabPanel({
deferredRender: false,
activeTab: 0,
bodyStyle :'padding:5px 0px 0px 5px;',
height: 230,
items:[{
title: '课程表信息',
items: [agendaGrid]
}]
});

其中,agendaGrid即为一个gridpanel
放在你的里面就是
var panel = new Ext.TabPanel( {
width : 300,
height : 200,
items : [{
title:'中国十大名剑'
items:[grid]
}]
});

即可

回答2:

EditorGridPanel 也是Panel , 和其他panel作为items[] ,
或者动态添加add(EditorGridPanel ) 然后再重新布局一下。

回答3:

用http代理组件就是实现