Closed pstanton closed 7 years ago
It looks like by removing event.preventDefault()
in _onKeyPress
solves it. Because event is already prevented in _onKeyDown
.
_onKeyPress: function(event) {
if (this._preventKeyPress) {
//event.preventDefault();
this._preventKeyPress = false;
}
},
No longer an issue with latest master, closing for now. I will reopen if I find it after more testing.
if you are typing into the text field, then press enter nothing happens, but then your next key press has no effect. eg:
this can be easily reproduced on the demo page