0
如何在ExtJs中的「specialkey」事件中使用源對象?在specialkey事件處理程序中獲取調用字段
這是我的控制器代碼:
init: function() {
this.control({
'login textfield[action=enter]': {
specialkey: this.on_KeyPress
}
});
}
.......................
on_KeyPress: function (f, e) {
if (e.getKey() == e.ENTER) {
Ext.Msg.alert('Keys', 'You pressed the Enter key');
*****I want to take 'textfield' object here*******
}
}
謝謝!
嘗試e.getTarget() – AJJ
這是行不通的。代碼:var obj = e.getTarget(); var win = obj.up('window'); - -錯誤。 – Oleg