我尝试在extjs网格中捕获Tab键向上通风口。但是我无法在extjs网格中捕获keyup事件,这是我的代码。
Ext.override(Ext.grid.EditorGridPanel, {
initEvents : function(){
Ext.grid.EditorGridPanel.superclass.initEvents.call(this);
this.addListener('keyup', function() {
alert('key');
});
}
请告诉我上面的代码我做错了什么?