Re: missing images in IE

2008-11-18 Thread [EMAIL PROTECTED]
I think it boils down to this javascript: image = $doc.createElement('img') image.onload = function() { window.alert("onload"); }; image.src = "icons/img.png"; $doc.body.appendChild(image); $doc.body.removeChild(image); which is not firing the onload function of img. On Nov

Re: missing images in IE

2008-11-18 Thread [EMAIL PROTECTED]
Hi Manik, in Firefox I can see the picture. On Nov 18, 5:20 am, "Manik Chand" <[EMAIL PROTECTED]> wrote: > Sorry mon3y,  this reply is for Rehek.michal > > > > On Tue, Nov 18, 2008 at 9:48 AM, Manik Chand <[EMAIL PROTECTED]> wrote: > > Hi mon3y, > > try to open in Firefox and write us the differ

Re: missing images in IE

2008-11-17 Thread Manik Chand
Sorry mon3y, this reply is for Rehek.michal On Tue, Nov 18, 2008 at 9:48 AM, Manik Chand <[EMAIL PROTECTED]> wrote: > Hi mon3y, > try to open in Firefox and write us the differences you notice. > > > On Tue, Nov 18, 2008 at 7:25 AM, [EMAIL PROTECTED] < > [EMAIL PROTECTED]> wrote: > >> >> Sorry t

Re: missing images in IE

2008-11-17 Thread Manik Chand
Hi mon3y, try to open in Firefox and write us the differences you notice. On Tue, Nov 18, 2008 at 7:25 AM, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > Sorry there is a typo in example, instead of > > Image img2 = new Image("icons/img2.png"); > > it should be the same url as for img: > > Im

Re: missing images in IE

2008-11-17 Thread [EMAIL PROTECTED]
Sorry there is a typo in example, instead of Image img2 = new Image("icons/img2.png"); it should be the same url as for img: Image img2 = new Image("icons/img.png"); corrected whole example: FlexTable table = new FlexTable(); Image img = new Image("icons/img.png")

Re: missing images in IE

2008-11-17 Thread mon3y
Hi I don't quiet understand the problem. FlexTable table = new FlexTable(); Image img = new Image("icons/img.png"); table.setWidget(0, 0, img); Image img2 = new Image("icons/img2.png"); table.setWidget(0, 0, img2); should it not be : Flex

missing images in IE

2008-11-15 Thread [EMAIL PROTECTED]
Greetings, using the following code will result in image not being loaded: FlexTable table = new FlexTable(); Image img = new Image("icons/img.png"); table.setWidget(0, 0, img); Image img2 = new Image("icons/img2.png"); table.