我正在使用EXTJS 4并使用Button类。有了它,我无法访问dblclick事件监听器。有没有办法可以将此侦听器作为属性添加到按钮类中?
感谢。
Ext.define('MemOS.controller.Icon',{ extend:'Ext.app.Controller',
models: ['Icon'],
stores: ['Icons'],
views: ['Icon'],
refs: [{
ref: 'icon',
selector: 'icon'
}],
init: function () {
this.control({
icon: {
click: function(c) {
Ext.create('MemOS.view.Window', {
title: 'Project',
items: [{
xtype: 'projectsgrid'
}]
}).show();
}
}
});
},
});
答案 0 :(得分:0)