1. #1
    Sencha User
    Join Date
    Feb 2012
    Location
    Paris
    Posts
    83
    Vote Rating
    0
    Answers
    1
    Tchinkatchuk is on a distinguished road

      0  

    Default Unanswered: [ TABPANEL] How to select an tabbar icon tap event

    Unanswered: [ TABPANEL] How to select an tabbar icon tap event


    Hi all,

    I have this tabpanel :
    Code:
    Ext.define('Webshop.view.main', {
        extend: 'Ext.TabPanel',
        xtype:  'mainpanel',
        id:  'mainpanel2',
        requires: [
            'Webshop.view.cart.shoppingCartContainer',
            'Webshop.view.search.form',
            'Webshop.view.catalogNavigation'
        ],
        config: {
        	fullscreen		: true,
            tabBarPosition  : 'bottom',
            layout          : 'card',
            items: [
                {
                    title	: 'Catalogue',
                    iconCls	: 'bookmarks',
                    xtype	: 'catalognavigation'
                },{
                    title	: 'Recherche',
                    iconCls	: 'search',
                    xtype	: 'searchnavigationview'
                },{
                    title	: 'Panier',
                    iconCls	: 'organize',
                    xtype	: 'shoppingCartContainer',
                    id		: 'shoppingCartContainer'
                },{
                    title	: 'Mon espace',
                    xtype	: 'monespacecontainer',
                    iconCls	: 'user',
                    iconMask: true,
                }
            ]
        },
    });
    How could I get ref and which event to control in order to get the tap on the 4th element icon for example.
    I have tried many way without success.

    Thanks in advance

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,714
    Vote Rating
    438
    Answers
    3113
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    Within the config object, add the control config like:

    Code:
    control : {
        'tab' : {
            tap : 'onTabTap'
        }
    }
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

  3. #3
    Sencha User
    Join Date
    Feb 2012
    Location
    Paris
    Posts
    83
    Vote Rating
    0
    Answers
    1
    Tchinkatchuk is on a distinguished road

      0  

    Default


    So it is not possible to do it within the controler ?
    I thought the good way aw to write all event in controler.

    What's the difference and why could'nt I do it in the controler ?

  4. #4
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,714
    Vote Rating
    438
    Answers
    3113
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    Sure you can... The tab bar is a child of the tab panel and each tab is a child of the tab bar so you can resolve in a controller.
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

Tags for this Thread