Changing input field values programmatically
- 3 replies.
- This is not yet resolved.
- This question was started by fredrik.westmark.
- Last post by Sjoerd Visscher.
|
user
March 11th 2010
|
We are using the jQuery mousewheel plugin(http:/
BR // Fredrik |
|
Xopus Team
March 15th 2010
|
I don't see a way to get this to work. But it might not be too hard for us to add this as a feature to Xopus.
|
|
user
March 18th 2010
|
We solved this by tricking Xopus into believing someone pressed a key on the keyboard(only tested in FF):
var evt = document.createEvent('KeyEvents'); evt.initEvent('keyup', true, true); inputFieldElement.dispatchEvent(evt); |
|
Xopus Team
March 24th 2010
|
Dude... Nice solution!
|
- Support
- › Forum
- › How To ...
- › Changing input field values programmatically
React
Write a comment