Re: UIHandler not working

2011-12-13 Thread Ed
Stange as the example works. You might want to post your gwt.xml file - Ed On Dec 13, 6:30 am, KK wrote: > I created one simple program to test the UIHandler annotation from the > tutorial. > >         @UiHandler("button") >         void handleClick(ClickEvent e) { >             Window.alert("Hel

UIHandler not working

2011-12-12 Thread KK
I created one simple program to test the UIHandler annotation from the tutorial. @UiHandler("button") void handleClick(ClickEvent e) { Window.alert("Hello, AJAX"); } But this event is not getting triggerred when i click on the button. Any clues ? public cl