Hi everyone,
I'm trying to add a MouseWheelHandler to a TextBox to manage some events.
It works fine in Firefox, but both in Safari and Chrome it's only receiving
deltaY = 0 events
myTextBox.addMouseWheelHandler(new MouseWheelHandler() {
public void onMouseWheel(MouseWheelEvent event) {
System.out.println("DeltaY:" + event.getDeltaY());
}
});
Is there any known bug with webkit?
Thanks
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-web-toolkit/-/ramqeBozz9IJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.