Я пытаюсь назначить событие / функцию на событие нажатия клавиши HTML-редактора в extjs.События зависят от браузера.это работает для Firefox, но не работает для Chrome.событие назначено, но не вызывается при нажатии клавиши или.
// i tried following ways
// keypress event -> not working
this.on('keypress', this.myEventCode, this);
// input event -> not working
this.on('input', this.myEventCode, this);
// keydown event -> not working
this.on('keydown', this.myEventCode, this);