I once had to do something vaguely similar. I needed to open a GWT app
in a window from a non-GWT app. I called var win =
window.open("GwtHtmlPage.html") and then set the data the GWT app
needed with win.blah = 3 or whatever. Then my GWT app used some JSNI
to fetch that value.

The problem as Robert metioned is that GWT doesn't really want you
doing inter-window communication. So you have to sling your own JSNI.

Derek

On Sep 14, 12:34 pm, Néstor Boscán <[email protected]> wrote:
> Hi
>
> I have a strange request. I have an application that needs to run on an
> iframe as part of another application. This application needs to open  popup
> browser windows to show additional information, for example a celltable with
> a list. How do I use GWT to run on the new popup browser window and send it
> data?
>
> Regards,
>
> Néstor Boscán

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

Reply via email to