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 事件,使用上述方法可添加相关的监听事件

上一篇:手动添加Git Bash到右键菜单


下一篇:Git技巧:右键菜单怎么去除?