是否可以链接到 tab.Panel 视图并选择第二个或第三个(不是第一个)tabItem?
目前我有一个链接到 tab.Panel 的视图,如下所示:
Ext.define("app.view.MyView", {
extend: 'Ext.tab.Panel',
xtype: 'myview',
alias: 'widget.myview',
requires: [
'Ext.TitleBar',
'dev.view.1',
'dev.view.2',
'dev.view.3',
'dev.view.4',
'dev.view.5',
],
config: {
tabBarPosition: 'bottom',
title: 'My Title',
ui: 'neutral',
items: [
{
xtype: 'xtype-of-view-1'
},
{
xtype: 'xtype-of-view-2'
},
{
xtype: 'xtype-of-view-3'
},
{
xtype: 'xtype-of-view-4'
},
{
xtype: 'xtype-of-view-5'
}
]
}
});
截至目前,当我在视图中加载时,“xtype-of-view-1”被设置为活动选项卡。但是是否可以在 tab.Panel 视图中加载但同时激活并按下其他选项卡之一?