Thanks

If it makes a difference, in my onMouseXXX methods, i run some code to
stop the event propagation, it looks like:

    def onMouseEnter(self, sender):
        event = DOM.eventGetCurrentEvent()
        DOM.eventStopPropagation(event)
        #do stuff after here

Sorry for the python code, but its all I know ;)

Gustaf


On Feb 14, 9:58 am, Thomas Broyer <t.bro...@gmail.com> wrote:
> I don't have time to try it out with GWT, sorry, but just to add some input
> to the possible issue: mouseover and mouseout events bubble, so if your
> mouse enters a child element of the B widget's root element, the event will
> bubble up to B's root element. GWT filters those events out in
> Widget#onBrowserEvent's default implementation to somehow mimic IE's (and
> now HTML5's / DOM3 Events') mouseenter and mouseleave 
> events:http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/...

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

Reply via email to