IE8 - Not working - Mouse event for ListBox
Hi,
I'm using a list box which has many URLs for image. When someone move
the mouse through the drop down values, I need to show the image in an
HTML box. This works fine (MouseMove) in Firefox, but does not work in
IE8.
The below code represents the test case, and none of them gets
called / fired in IE8.
Can someone please help me to sort this out. I'm using GWT 2.0.3.
ListBox listItem = new ListBox();
listItem.addMouseMoveHandler(new HandlesAllMouseEvents() {
public void onMouseDown(MouseDownEvent event) {
Window.alert("On Mouse down...");
}
public void onMouseUp(MouseUpEvent event) {
Window.alert("On mouse up...");
}
public void onMouseMove(MouseMoveEvent event) {
Window.alert("On mouse move...");
}
public void onMouseOut(MouseOutEvent event) {
Window.alert("On mouse out...");
}
public void onMouseOver(MouseOverEvent event) {
Window.alert("on mouse over...");
}
public void onMouseWheel(MouseWheelEvent event) {
Window.alert("on mouse wheeel....");
}
});
Thanks,
-ash
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home