Extjs 4.2 panel 添加 click 事件及右键菜单

listeners: {
                render: function(c) {
                c.body.on('click', function() { 
                   //TODO 添加点击事件功能                  
                    });
                c.body.on('contextmenu',function(e){
                    e.preventDefault();//阻止浏览器默认右键菜单
                    customMenu.showAt(e.getXY());//展示自定义菜单
                    });
                },
                scope: this
            },

Extjs4.2 panel 组件默认无 click 及 contextmenu 事件,使用上述方法可添加相关的监听事件

posted @ 2016-01-26 16:06  hello_史努比  阅读(1481)  评论(0编辑  收藏  举报