tab.Panel ビューにリンクして、2 番目または 3 番目 (最初ではない) の 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 ビューにロードすることは可能ですが、他のタブの 1 つをアクティブにして押したままにすることはできますか?