这是我尝试在EditorGridPanel中触发事件按键,模糊,键盘,mousedown事件。但是在下面的代码中只显示mousedown
警报
grid.on('render', function(){
var view = grid.getView();
view.on('blur', function(e, t){
alert('blur');
},this);
view.on('keyup', function(e, t){
alert('keyup');
},this);
view.on('keypress', function(e, t){
alert('keypress');
},this);
view.mainBody.on('mousedown', function(e, t){
alert('mousedown');
},this);
}, this);
如何在编辑网格中触发按键,模糊,键盘事件