[gwt-contrib] Re: Image doesn’t show when using sa me URL multiple times and using the new event system

2009-02-05 Thread aris
Is any one having this problem? I just installed the latest version and I have the same problem. If I add a random number to each call of each url, it works. But of course this is not a real solution… Thanks --~--~-~--~~~---~--~~

[gwt-contrib] Re: Image doesn’t show when using sa me URL multiple times and using the new event system

2009-02-05 Thread Emily Crutcher
Can you create a test case that is reproducible and add an issue to the issue tracker? After you do that, feel free to e-mail me the issue id and I'll take a look. The strange thing about your problem is that the load listeners are actually just adapted load handlers now, so getting different

[gwt-contrib] Re: Image doesn’t show when using sa me URL multiple times and using the new event system

2009-02-05 Thread aris
New Issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3340 the code is like this: public class TestImages implements EntryPoint { public void onModuleLoad() { Image img = new Image(Images/wikipedia32.gif); Image img2 = new Image(Images/wikipedia32.gif);

[gwt-contrib] Re: Image doesn’t show when using sa me URL multiple times and using the new event system

2009-01-24 Thread aris
The problem seems to happen only when the first time an image X is loaded and that image element isn’t attached. Then the second image that uses the same URL, will never be updated from the pendingSrc I'm testing on IE7 and Windows Vista Thanks