-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dropdown keypress event for comma key #3016
Comments
Sorry to bring this up again. |
There's a trick with current version, but its super ninja $('.ui.dropdown').dropdown('internal', 'get shortcut keys', return {
backspace : 8,
delimiter : false,
deleteKey : 46,
enter : 13,
escape : 27,
pageUp : 33,
pageDown : 34,
leftArrow : 37,
upArrow : 38,
rightArrow : 39,
downArrow : 40
})
; I just realized that I didn't actually solive this issue with the related commits, so I'll go ahead and re-open. |
Dears, I'm using version 2.2.6 and I still have the same bug. |
In many languages the key with keycode "188" (comma in en layout) is used for some letter. For example in russian language this key stands for letter "б".
Unfortunately, the semantic ui dropdown binds an event to this keycode, to separate tags (event for non multiselect fields), which makes typing the letter, assigned to this keycode impossible.
Is there some way to disable, or customize this functionality?
The text was updated successfully, but these errors were encountered: