I'm not sure if I understand your problem, but we got away with it and were 
able to load the module dynamically. We need it that because we want to get 
the locale from parameter or the local storage (HTML5). We also don't trust 
the proxy caching so we added random number with the request. 

<head>
<script type="text/javascript">
//l=the locale from param or local storage 

$('head').append('<meta name="gwt:property" content="locale='+l+'">');

var r=Math.random();
var p="MODULE_NAME.js?x="+ r;
var xx='<script type="text/javascript" src="'+p+'" ></'+'script>';
document.write(xx);
</script>
</head>

Alaa
On Wednesday, September 29, 2010 6:54:35 PM UTC+3, szebeni wrote:
>
> Hy peps, 
>  I have a GWT App which is loading perfectly on a host page, but I 
> need to do some interaction before Its loaded, which cause this issue: 
> I get only a loading blank screen if I'm writing the script tag for 
> nocache.js into the document after the page loaded. Do you know why is 
> it and how can I fix it? 
> I checked and the path is fine, just the generated js code behaves 
> differently (like the function from nocache.js is undefined in the 
> browser specific one).

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to