I have used

com.google.gwt.dom.client.Element e = 
Document.get().getElementById(...).cast();
DOM.setEventListener(e, new EventListener() {
  public void onBrowserEvent(Event e) {
    NativeEvent ne = e.cast();
    if("click".equals(ne.getType())) {
       //click event occured
    }
  }
});

But maybe there is a better way of doing this.

-- J.

-- 
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/-/63T-lFDJ8CIJ.
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.

Reply via email to