在这里,我想用'tab B'加载我的窗口而不重新排列标签的顺序。通常它会加载“标签A”。
请解决我的问题。
这是我的源代码:
Ext.define('test.view.tView', {
extend: 'Ext.tab.Panel',
xtype: 'main',
requires: [
'Ext.TitleBar'
],
config: {
tabBarPosition: 'bottom',
items: [
{
title: 'tab A',
styleHtmlContent: true,
scrollable: true,
},
{
title: 'tab B',
pressed : true,
items: [{
xtype : 'button',
ui : 'round',
text : 'my'
}]
},
{
title: 'tab C',
},
{
title: 'tab D',
}
]
},
});