I have a table with addresses. I have a button you can click which I want to open a google search for the address in a separate window. I have tried
getUI().getPage().open(url, "_blank"
and
BrowserWindowOpener opener = new BrowserWindowOpener(url);
opener.extend(googleBtn
but both are appending my url to the current path. I want to simply run a search in google in a separate window. I’m sure this is much simpler than I’m making it. It sure should be, at least. Thanks.