Window.open handle ?

2011-03-04 Thread Ice13ill
I noticed that Window.open() method does not return a handle to the new window (although javascript does...). Is there another mechanism that gives this access to that new window? For example i have a small panel (like the chat in gmail) and i want to implement the pop out! functionality (as easy

Re: Window.open handle ?

2011-03-04 Thread BB
Issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3779 -- 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

Re: Window.open handle ?

2011-03-04 Thread Andrei Cosmin Fifiiţă
Few stars... Doesn't help much... On 4 March 2011 16:11, BB buchholz.bast...@googlemail.com wrote: Issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3779 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Window.open handle ?

2011-03-04 Thread Colin Alworth
It should be trivial to make your own call in jsni to $wnd.open, returning whatever handle you want, or doing the focus right away. Look at how Window.open is implemented, and see if you can replicate it in such a way to have the exact behavior you need. -- You received this message because