On May 3, 1:47 pm, Ed <[email protected]> wrote: > Hellu, > > I am trying to port to the new NativePreviewHandler as the > EventPreview is deprecated in 1.6.4. > A few questions: > 1) How to retrieve the correct target element that fired the event > preview. > > In the past this was done by: > Element target = DOM.eventGetTarget(event) > > But how should this by done now with the new received > NativePreviewEvent ?
Hi, I think that you should be able to do it with: http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/Event.NativePreviewEvent.html#getNativeEvent() and then: http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/dom/client/NativeEvent.html#getEventTarget() and then cast as explained in the javadoc for EventTarget: http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/dom/client/EventTarget.html Hope that helps, Salvador --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. 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 -~----------~----~----~----~------~----~------~--~---
