declaring both a GWT and a javascript event handler on a html element

2010-09-07 Thread GWT noob
When I declare a event handler on a html element both at the GWT level(using ClickHandler's onclick) and at the external Javascript levele(by using the onlclick attribute of the html element), the GWT event handler is overriding the event handler in the external javascript. Is there a way to have

Re: declaring both a GWT and a javascript event handler on a html element

2010-09-07 Thread Chris Conroy
You could have your GWT handler call your javascript handler using JSNI. On Mon, Sep 6, 2010 at 12:42 PM, GWT noob karthik.ele...@gmail.com wrote: When I declare a event handler on a html element both at the GWT level(using ClickHandler's onclick) and at the external Javascript levele(by