ビューで、
{
xtype: 'textfield',
fieldLabel: 'Test Field',
name: 'testField'
}
Keyupイベントをフックするために、コントローラーのテキストフィールドをgrepしたいと思います。
私は試した、
this.control({
'input[name='testfield']' : {
afterrender : function(c){
console.log(c); // nothing happened.
c.getEl().on('keyup', function (evt, el) {
console.log(evt.getKey());
});
}
}
});
しかし、それは機能しません、
コントローラーでそのテキストボックスをgrepしてキーアップイベントをフックするにはどうすればよいですか?
知っている方、アドバイスお願いします。
ありがとう