On Mar 11, 12:29 am, Anders <[email protected]> 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, FormPanel can be constructed with a "target browsing context name": http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/FormPanel.html#FormPanel(java.lang.String) The javadoc is a bit misleading as you actually pass a name that could match either the name of an iframe, or the name of a window (for instance, one that has been previously opened with Window.open(...)), or one of the "special names" _self, _top, _blank, _parent, etc. -- 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.
