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!
In JavaScript use
window.open(). In GWT, useWindow.open().Neither of these have anything to do with AJAX, they are standard features of JavaScript/GWT.