从我的代码中摘出来的,没验证,你再调调。
TabPanel和Grid的定义就不贴了,只说怎么嵌入。
var tabpanel = Ext.getCmp("CenterTabPanel");
if (!tabpanel.getActiveTab()) {
var comp = Ext.getCmp("Gridid");
var firstTab = createTabPage(rootId, comp, "Sale");
tabpanel.add(firstTab);
tabpanel.setActiveTab(firstTab.id);
}
createTabPage = function (id, comp, icon) {
var tab = {
id: id,
iconCls: icon,
title: "xxxxx",
layout: 'fit',
layoutOnTabChange: true,
items: comp
};
return tab;
}