我正在使用 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();
}
}
});
},
});