Re: Strange Request: How do I open a new browser window, run part of the GWT application there, and communicate with it

2011-09-15 Thread Robert W
Within jsni you can open new windows by window.open and there you have 
reference to new window. In the opened win you have samething like 
parentWindow (with my distant memory). Gwt not have rather inter-window 
communications methods.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/iSXpSThy4l8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Strange Request: How do I open a new browser window, run part of the GWT application there, and communicate with it

2011-09-15 Thread Derek
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 nesto...@gmail.com 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 google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Strange Request: How do I open a new browser window, run part of the GWT application there, and communicate with it

2011-09-15 Thread Rob
Hi,

Take a look at gwt-multipage:

- http://code.google.com/p/gwt-multipage/

and this post:

- http://uptick.com.au/content/managing-multiple-host-pages

Cheers
Rob

On Sep 15, 11:30 pm, Derek derekad...@gmail.com wrote:
 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 nesto...@gmail.com 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 google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Strange Request: How do I open a new browser window, run part of the GWT application there, and communicate with it

2011-09-14 Thread Néstor Boscán
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 google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.