Hi,
I am seeing a problem in Internet Explorer whereby it appears that
onModeulLoad() does not get called.
In the HTML ive added the following to highlight the problem...
<script>
var t=setTimeout("testLoaded()",30000);
function testLoaded()
{
if (window.Loaded==undefined)
{
alert("onload didnt run");
}
}
</script>
My GWT code...
public void onModuleLoad()
{
setLoaded();
... now initialise the GWT
}
public native void setLoaded()
/*-{
$wnd.Loaded = "loaded";
}-*/;
Intermitently using Internet Explorer, it simply fails to call the
onModuleLoad() method, and you get the "onload didnt run" method.
Any ideas on this one? Seems quite a serious flaw.
GWT version: 1.5.3
IE: 7.0.5730.11IC
thanks, Steve M
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---