Many thanks for the JSNI approach. Could you elaborate a little bit on
"more elegant means too with server side efforts."?
On May 16, 9:06 pm, Joseph Lust <
lifeofl...@gmail.com> wrote:
> Working from memory, usually if you open a new window, the child retains a
> reference to its parent (opener). So, you can have it refer back to its
> parent <
http://www.w3schools.com/jsref/prop_win_parent.asp> and ask for
> content.
>
> So, I think you could achieve this with:
>
> 1. Do your async call
> 2. Open a new window
> 3. New window is blank URL and simple JS to ask parent for content (ask
> through a JSNI method to GWT)
> 4. Return the request from (3) with the HTML returned from your async.
> 5. Replace the content of the child window with the target HTML.