You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure the key event handling is right. registerListeners() assigns the key listeners to the target container, not the form input element. See my patch below.
Add assignment of onkeydown event handler to form INPUT in createEditField().
v1.8.3
Not sure the key event handling is right. registerListeners() assigns the key listeners to the target container, not the form input element. See my patch below.
line: ~505 - this._keyHandler = this.checkForEscapeOrReturn.bind(this);
line: ~512 - if (Event.KEY_ESC == e.keyCode) { this.handleFormCancellation(e); }
line: ~555 - Event.observe(fld, 'keydown', this._keyHandler);
line: ~932 - REMOVE THIS LINE ALTOGETHER - "keydown: 'checkForEscapeOrReturn',
-G
The text was updated successfully, but these errors were encountered: