I am not sure if I can completely answer your question as I am not a JS expert, but let's give it a try You might want to ask this in the contributor forum where you find more dev team members.
GWT holds the current fired event as global property in DOM.currentEvent<http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/DOM.html#eventGetCurrentEvent()> . (GWT code is accessible from JS code) A GWT event has a short lifecycle and is only valid when it's fired and as such can be accessed through this property. The gwt event also contains a reference to the widget (element). -- 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/-/VKiU1T33KJkJ. 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.
