Hi everyone,
I have an app that uses the GWT-Incubator GlassPanel class.
I extended it to form a custom one that implemented a ClickListener. I upgraded to GWT1.7 and GWT-Incubator 1.7, and it broke ClickListener.
I tried to rewrite my class so that it implemented ClickHandler, but it does not execute my new onClick method when the panel is clicked.
Anyone know anything about this?
Thanks
example:
public class MyGlassPanel extends GlassPanel implements ClickHandler{
public void onClick(ClickEvent arg0){
Window.alert("There was a click, but I never get displayed");
this.remove();
}
}