This is a migrated thread and some comments may be shown as answers.

Maximize, FullScreen, ChannelMode,no toolbar, no menubar

1 Answer 348 Views
Window
This is a migrated thread and some comments may be shown as answers.
Neal
Top achievements
Rank 1
Neal asked on 20 Nov 2008, 12:11 PM
Hi All,

How do I get a radwindow to open in FULL screen, no Browser menubar, no Toolbars etc..??

Our app is supposed to run as if it were desktop. (XP = fine but Vista + IE7 the toolbars remain using normal window.open
Currently ..
I redirect if not authenticated to login to Default.aspx .
Default.aspx uses the java script beneath, which opens the main window maximized .)
....
 

window.onload =

function()

 

{

window.opener=self;

 

 

//Open this first then the next (to Close and escape the IE 7 close prompt)

 

 

var newWindow = window.open("DRM_Main.aspx","Default"," maximize=true, fullscreen=yes, channelmode=yes, toolbar=no, menubar=no, directories=no, resizable=yes, status=yes, scrollbars=yes");

 

window.open(

'CLoseDummyIE7.htm', '_self');

 

 

newWindow.focus();

window.close();

}

Can I do same with RadWindow?/
Thanks
Neal

1 Answer, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 24 Nov 2008, 03:09 PM

Hello Neal,

The IE versions before IE 7.0 allowed a popup window to open in kiosk mode - on top of everything - taskbar, etc and without titlebar, statusbar, menu bar and without any chrome. However this feature was removed because it was considered a security hole. That is why you cannot use this functionality with IE7.

RadWindow uses an IFRAME to mimic the behavior of a javascript popup window, which means that it is ran in the context of the browser window, i.e RadWindow is not a separate browser window, thus the behavior you need cannot be achieved with RadWindow.


Greetings,

Svetlina
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Window
Asked by
Neal
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Share this question
or