Actions
Bug #5347
closedALT+COMMAND doesn't trigger keypress
Description
When using ALT+4 for example a keypress doesn't trigger resulting in the submit button still being disabled. See if there's an event that can be listened to to allow this to work.
Updated by krileon over 9 years ago
The event fires but value of the input is not updated until submit or another character is entered. Could be just a browser behavior issue.
Updated by krileon over 9 years ago
- Status changed from Assigned to Resolved
- % Done changed from 0 to 100
Fixed with usage of "input" event. It now tracks keyup (for B/C with mobile devices), input (best trigger as updates on UI value change.. for alt command usage), and change (best for API value changes).
Actions