这是我的面板,我想在这个面板中添加标签。我从这里尝试了很多例子,但没有成功.. 这是我的代码。
this.Tab = new Ext.Panel({ title: 'PG Routing', //iconCls:'mrc', layout:'border', border:false, width:1000, height:600, closable:true, id:'pgrouting_tab', items:[this.addnewchannelform] });
答案 0 :(得分:2)
您应该尝试使用Ext.tab.Panel而不是Ext.Panel。看看this示例:
Ext.create('Ext.tab.Panel', {
width: 400,
height: 400,
renderTo: document.body,
items: [
{
title: 'Foo'
},
{
title: 'Bar',
tabConfig: {
title: 'Custom Title',
tooltip: 'A button tooltip'
}
}
]
});