0

我有这个代码:

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 图标仍然处于选中状态,我该怎么做?

4

1 回答 1

1

尝试这个

{
title:'firstTab',
id:'fTab',
}

{标题:'secondTab',id:'sTab',在此之后你必须对按钮的处理程序fn进行一些编码,即

handler:function(){
Ext.getCmp('sTab').show();
Ext.getCmp('fTab').hide();
}
}
于 2013-01-10T06:55:25.213 回答