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',
}

{title:'secondTab'、id:'sTab'、この後、ボタンのハンドラーfnでコーディングを行う必要があります。

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