tags:

views:

21

answers:

1

Hello, I'm just wondering if it would be possible to open new browser window/tab inside AJAX/GWT application. For example: there is an application which takes all the space of one page, and in one part there is tabbed panel, so I would like to open fully functional browser window/tab inside that panel.

Is it possible somehow? Thank you for replies!

A: 

In JavaScript use window.open(). In GWT, use Window.open().

Neither of these have anything to do with AJAX, they are standard features of JavaScript/GWT.

Jason Hall
The only thing you havent mentioned is that there is no solution to open tab.
kospiotr
There is no way to tell a browser to open a new tab instead of a new window. Whether to open in tabs or windows is a user preference, and some browsers don't have tabs at all.
Jason Hall