Re: Open url in new mobile safari instance?: Window.open()

2012-12-31 Thread Jens
You have to program that behavior into UiWebView, see: https://www.google.com/search?q=open+link+in+safari+uiwebview -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.co

Re: Open url in new mobile safari instance?: Window.open()

2012-12-30 Thread Mark Wyszomierski
Hi Paul, Thanks for the sample - it loads the target in the UIWebView. I tried using a target of "_blank" as well, same result. I might have to just catch external urls in the native app and launch safari manually, Thank you On Sun, Dec 30, 2012 at 9:30 PM, Paul Stockley wrote: > This works on

Re: Open url in new mobile safari instance?: Window.open()

2012-12-30 Thread Paul Stockley
This works on iOS Fullscreen web applications. I think it may also work on a UIWebView public void open(String url) { Anchor a = new Anchor(); a.setTarget("_new"); a.setHref(url); RootPanel.get().add(a); NativeEvent e = Document.get().createHtmlEvent("click", true, true); a.getElement().dispatc

Open url in new mobile safari instance?: Window.open()

2012-12-30 Thread markww
Hi, I have a Button, when clicked, I'd like to open a url in a new browser instance. The following works on desktop: Window.open(url, "_blank", null); When I run the same code in a UIWebView on ios, nothing happens. Ideally I'd like to open a new instance of mobile safari directed to that