Skip to content

Instantly share code, notes, and snippets.

@xtman
Last active December 14, 2015 11:29
Show Gist options
  • Save xtman/5079774 to your computer and use it in GitHub Desktop.
Save xtman/5079774 to your computer and use it in GitHub Desktop.
Open a URL in a new window in Google Web Toolkit.
public class GWTExample {
public static void openUrlInNewWindow(String url, String name) {
// Open a new browser window
com.google.gwt.user.client.Window.open(url, name, "menubar=no,location=false,resizable=yes,scrollbars=yes,status=no,dependent=true");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment