When Window.open(url, "_blank", ""); is called, it opens a new window
without the gwt.codesvr parameter.
Is there an option to tell it to include the gwt.codesvr parameter if
running in debug mode?
It is possible to code around it with something like this:
String devMode = Window.Location.getParameter("gwt.codesvr");
if (devMode != null) {
url += "&gwt.codesvr=" + devMode;
}
however, I would rather not have to do that.
--
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.