我有这个代码:
Ext.define('myapp.view.my_view', {
extend: 'Ext.TabPanel',
xtype: 'myapp_myview',
config: {
fullscreen:true,
tabBarPosition: 'bottom',
items: [
{
xtype: 'top_bar'
},
{
xtype: 'title_bar',
},
{
title: 'TAB 1',
items: [
{
xtype: 'myapp_tab1_screen1',
},
{
xtype: 'mayapp_tab1_screen2',
},
]
}
]
}
});
我想在 screen1 中有一个滑动到 screen2 的按钮,这意味着 TAB 1 图标仍然处于选中状态,我该怎么做?