Hi Esteban,
You have already two linkers that you can use: xs and xsiframe. The
first is not supported in dev mode and is a little old. I would
recommend to use the xsiframe linker. The problem is the scarce
documentation about linkers and some side effects that they could have
on your application :(
You can also "hack" the write problem by overriding the write method
in JS ("window.write = function() {...}"). More or less, the thing to
do there is adding a new "script" node in the header with the URL sent
in the parameter of the write call. Should be almost the same node
content but instead of write you should manipulate the DOM with JS.
Start with "var oldWrite = window.write; window.write =
function(param) {alert(param); window.write = oldWrite;};". From the
on, figure out and have fun! :)
cheers,
Berto
On Jun 16, 9:16 am, esteban <[email protected]> wrote:
> Hi everyone,
> I have a question: is there any way that i can load GWT after the page
> is rendered?
> Thanks
--
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.