-->

监听器选项卡项单击煎茶(Listener to Tab Item Click in Sencha)

2019-08-02 04:46发布

在我的应用程序,我使用的是在这5项的标签面板。 每个项目拥有约6块板卡布局增加。 当我在一个标签物品内部的最后一个面板,我需要通过单击底部的标签面板(有点类似于iOS中正常标签视图控制器)上,回到最初的面板。 我已经碰上了一些解决方案,我发现这里的,但似乎只有当我在标签之间切换工作。 事实上,我要听同一标签图标的单击事件。 我怎样才能做到这一点?

Answer 1:

我对你的问题的工作。 我想这是你想要什么。 希望这可以帮助。 如果不是这样,请发表评论。

1)。 查看(MyTabPanel1.js)

    Ext.define('MyApp.view.MyTabPanel1', {
    extend: 'Ext.tab.Panel',
    config: {

            scrollable: 'vertical',
             items:
            [
                {
                   xtype: 'panel',
                   id:'cardpanel1',
                   title: 'Tab1',              
                   layout: 'card',
                        items: [
                            {  
                                html: "First Item",
                                items:
                                [
                                {
                                    xtype: 'button',
                                    text: 'Forward',
                                    handler: function() {
                                    Ext.getCmp('cardpanel1').setActiveItem(1);
                                    console.log('Going to Second Item');
                                    }
                                }
                                ]
                            },
                            {
                                html: "Second Item",
                                items:
                                [
                                {
                                    xtype: 'button',
                                    ui: 'confirm',
                                    text: 'Go back',
                                    handler: function() {
                                    Ext.getCmp('cardpanel1').setActiveItem(0);
                                    console.log('Going to First Item');
                                    }
                                }
                                ]
                            }

                        ]               

                },

                {
                    xtype: 'panel',
                    title: 'Tab2',
                    scrollable: true,
                    items: [
                        {
                            xtype: 'button',
                            margin: 10,
                            ui: 'action',
                            text: 'Tab2'
                        }

                    ]
                },
                {
                    xtype: 'panel',
                    title: 'Tab3',
                    scrollable: true,
                    items: [
                        {
                            xtype: 'button',
                            margin: 10,
                            ui: 'action',
                            text: 'Tab3'
                        }
                    ]
                }

            ]
        }

    });

2)。 控制器(MainController.js)

    Ext.define('MyApp.controller.MainController', {
        extend: 'Ext.app.Controller',
        config: {
            control: {

                "tabpanel #ext-tab-1":{  //ext-tab-1 is the id for the 1st tab generated by Sencha
                   tap: 'ontap'
                }            
            }
        },

        ontap: function (){
        console.log('inside controller');
        Ext.getCmp('cardpanel1').setActiveItem(0);
        }

    });


Answer 2:

我想给一个更简单的解决方案

这就是我所谓的视口视图这是一个的TabPanel:

Ext.define('Sencha.view.iphone.Viewport',{
           extend: 'Ext.TabPanel',
           xtype: 'newviewport',
           alias: 'widget.newTabPanel',

现在在我的控制文件:

    Ext.define('Sencha.controller.iphone.main', {
        extend: 'Ext.app.Controller',
        config:
        {
        refs: {
        theMainTabPanelTabbarTab: 'newTabPanel > tabbar > tab', //this the tab of the tabpanel, if we listen to it that way we will know of tab panel tap.
        },
        control: {
        theMainTabPanelTabbarTab:{
        tap: 'onTapMainTabPanel'
        }
}

这是一个工作代码和正常工作。 希望这会帮助你。



文章来源: Listener to Tab Item Click in Sencha