Community
Participate
Working Groups
Build Identifier: Log here on pastebin: http://pastebin.com/3YE7EUiR Raises only on Internet explorer (tested IE8 and IE9 on win xp and win7) No problems with FF or chrome (tested win and linux) I think I found the problem: This is ok (titleimage, title, message) in TitleAreaDialog sublclasses public final void create() { super.create(); setTitleImage(AbstractUIPlugin.imageDescriptorFromPlugin("id", "i.gif").createImage()); setTitle("Title"); setMessage("The message"); } This is not OK (title, message, titleimage) public final void create() { super.create(); setTitle("Title"); setMessage("The message"); setTitleImage(AbstractUIPlugin.imageDescriptorFromPlugin("id", "i.gif").createImage()); } Reproducible: Always
Elvis, it seems that a lot widgets are created in your dialog which makes the debugging from the error message impossible. Could you provide a small complete (self-running) snippet/project that demonstrate the issue?
Elvis, I've tested the TitleAreDialog with both of your code snippets in IE8( Win XP SP3) and IE9(Win 7) and I can't reproduce the issue against CVS HEAD. Which version of RAP are you using? A small complete (self-running) snippet/project that demonstrate the issue is really welcomed.
My RAP version is 1.4.1.20110914-1945 I have found how to always reproduce the issue. The Dialog title and message must be variable (should change) between instantiations. Making so the Dialog never appears. To accomplish my situation I have used, in my snippet, a Random. Hope you can find and solve this strange situation.
Created attachment 208692 [details] Example project to reproduce error
I can't reproduce it against CVS HEAD (1.5M4). Tested with IE9 (Win7) and IE8 (WinXP). Could you confirm this?
Elvis, I will close this bug as WORKSFORME. Please reopen it if the issue still persists with 1.5M5 (M6).