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 google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to