你好,我想按鍵盤上的事件在鍵盤上輸入。我這樣做:按鍵導航,按鍵盤上的事件輸入鍵盤上的輸入
listeners: {
afterRender: function (thisForm, options) {
this.keyMap = Ext.create(
'Ext.util.KeyMap',
this.el,
[
{
key: 13,
fn: this.submitOnEnter,
scope: this
}
]
);
}
},
submitOnEnter: function (e) {
if (e === 13) {
console.log('some event there!!!')
}
},
但是當我按下回車沒有任何反應。
你是否試圖將Keylistener添加到窗體或窗體域?你使用的是什麼版本的ExtJS?多一點的代碼會有所幫助。 – 2014-12-05 19:08:25
我使用分機4.2.1 – user3045654 2014-12-08 12:00:55