I type "xxx" and get some suggestions (list opened)
then I press "shift" (list closes immediatly) and hold shift to combine shift-key with "y" to write "xxxY"
The list should not hide, when pressing shift. also other keys like ctrl, pos1, insert,.. are affected.
I use chromium version 30.
The problem in source code:
the default action for the delayedKeyRepeat-Event for the field is "setupList", which hides the list, when the field-value is unchanged. I don't understand, why it hides then. For me it works fine, when I comment the line 341 like
example search for "xxxY":
I type "xxx" and get some suggestions (list opened) then I press "shift" (list closes immediatly) and hold shift to combine shift-key with "y" to write "xxxY"
The list should not hide, when pressing shift. also other keys like ctrl, pos1, insert,.. are affected.
I use chromium version 30.
The problem in source code:
the default action for the delayedKeyRepeat-Event for the field is "setupList", which hides the list, when the field-value is unchanged. I don't understand, why it hides then. For me it works fine, when I comment the line 341 like
// this.elements.list.hide(); } return true; },