-
Notifications
You must be signed in to change notification settings - Fork 47.6k
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
onChange not firing with virtual keyboard #2244
Comments
In Chrome, React expects to hear the |
Thanks for the reply. I updated it to dispatch the input event and it worked beautifully. I owe you a hug. |
Closing as this seems resolved and was an issue with the plugin. |
This post just saved me. I was also trying to manually fire |
Please share the solution. Facing same issue. |
How to dispatch input event? can you please share? |
1 similar comment
How to dispatch input event? can you please share? |
Hey all, writing a kiosk type app in Linux. It's for a touch device and I needed a virtual keyboard. I found a great Chrome extension at https://chrome.google.com/webstore/detail/virtual-keyboard/pflmllfnnabikmfkkaddkoolinlfninn?hl=en.
The extension works fine but React's onChange doesn't recognize it. The extension is JS-based and it dispatches keyDown, keyUp, keyPress, and change events itself. And naturally it updates the element's value. Why wouldn't this work?
Thanks!
The text was updated successfully, but these errors were encountered: