PDA

View Full Version : Events and WidgetComponent



sraubal
4 Jun 2009, 3:13 AM
Hi,

this thread (http://extjs.com/forum/showthread.php?t=55499&highlight=WidgetComponent) describes that the current GWT 1.2 version (I'm using 1.2.3) has problems with tooltips and the WidgetComponent.

I am having similar problems - I cannot receive events (like Events.OnClick) from a GWT image that is wrapped by a WidgetComponent:


Image image = new Image("test.png");
WidgetComponent imageComponent = new WidgetComponent(image);
imageComponent.setId("myTestId");
imageComponent.setTitle("testTitle");
imageComponent.sinkEvents(Events.OnDoubleClick | Events.OnClick);
Is this a (known) issue or am I just doing something wrong?

Thanks,
Stefan