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
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
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
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
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")
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
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.