Re: Communication between two browser windows

2010-03-17 Thread Anders
Here's how I solved it with JSNI: public class AppLoader implements EntryPoint { private String url, name, features; public void onModuleLoad() { initDownload(); Window.open(url, name, features); } private static void download(String arg) { //The arg string now con

Re: Communication between two browser windows

2010-03-15 Thread Thomas Broyer
On Mar 11, 12:29 am, Anders wrote: > Sorry, not for this one. The formpanel needs to be in a separate > browser window. So I'm basically interested in knowing how to set the > response target for a formpanel to be in another browser window (I > would guess this needs some JSNI). No need for JSNI

Re: Communication between two browser windows

2010-03-13 Thread Anders
Uhm. Could you show me some code, please? Thanks! On Mar 12, 3:57 am, Daniel Le Clere wrote: > Umm... use common local storage under HTML 5 and have a change handle > on the common dataset? yay? > > On Mar 11, 10:29 am, Anders wrote: > > > > > Sorry, not for this one. The formpanel needs to be i

Re: Communication between two browser windows

2010-03-11 Thread Daniel Le Clere
Umm... use common local storage under HTML 5 and have a change handle on the common dataset? yay? On Mar 11, 10:29 am, Anders wrote: > Sorry, not for this one. The formpanel needs to be in a separate > browser window. So I'm basically interested in knowing how to set the > response target for a f

Re: Communication between two browser windows

2010-03-10 Thread Anders
Sorry, not for this one. The formpanel needs to be in a separate browser window. So I'm basically interested in knowing how to set the response target for a formpanel to be in another browser window (I would guess this needs some JSNI). -- You received this message because you are subscribed to t

Re: Communication between two browser windows

2010-03-10 Thread PKolenic
Does the form really need to be in a new window? If not, want I would do is use a dialog box. You can set the dimensions however large you need. If would then be in the same window, when they press the submit button it could send the result to the server, and the callback function would be in the

Communication between two browser windows

2010-03-10 Thread Anders
Hey, I'm working on an app where the user clicks on a link in browser window A in order to open a new browser window B. In browser window B the user fills out a form and submits this to the server. The response is either an application/octet-stream (a binary file generated on the server) or just t