senchatouch tabPanel 在面板跳转时执行自定义函数 handler()

本文介绍如何在Sencha Touch中自定义TabPanel的行为,通过修改doTabChange函数实现点击标签项时触发特定的handler函数,并展示了如何在TabPanel配置中添加handler属性。
摘要由CSDN通过智能技术生成

在 sencha-touch-all.js 文件中找到 doTabChange函数

    /**
     * Updates this container with the new active item.
     * @param {Object} tabBar
     * @param {Object} newTab
     * @return {Boolean}
     */
    doTabChange: function(tabBar, newTab) {
        var oldActiveItem = this.getActiveItem(),
            newActiveItem;

        this.setActiveItem(tabBar.indexOf(newTab));
        newActiveItem = this.getActiveItem();
        return this.forcedChange || oldActiveItem !== newActiveItem;
    }

添加代码段,修改后如下:

    /**
     * Updates this container with the new active item.
     * @param {Object} tabBar
     * @param {Object} newTab
     * @return {Boolean}
     */
    doTabChange: function(tabBar, newTab) {
        var oldActiveItem = this.getActiveItem(),
            newActiveItem;

        var index = tabBar.indexOf(newTab);
        var item = this.getInnerItems()[index];
        // console.log(index);
        // console.log(item);
        if (item.config.handler) {
            if (typeof (item.config.handler) == 'string') {
                eval(item.config.handler);
            } else {
                item.config.handler();
            }
            // console.log('handler');
	    // return ; 
        }


        this.setActiveItem(tabBar.indexOf(newTab));
        newActiveItem = this.getActiveItem();
        return this.forcedChange || oldActiveItem !== newActiveItem;
    }


在创建的tabPanel视图中添加 item 的属性方法 handler():

Ext.create('Ext.TabPanel', {
    fullscreen: true,
    tabBarPosition: 'bottom',

    defaults: {
        styleHtmlContent: true
    },

    items: [
        {
            title: 'Home',
            iconCls: 'home',
            html: 'Home Screen'.
            handler:function(){
                console.log("执行自定义函数功能");
            }
       },
       {
            title: 'Contact',
            iconCls: 'user',
            html: 'Contact Screen'
        }
    ]
});


 



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值