Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

IE window full screen

Good afternoon, I need in 9.0 SR2 environment, opens docs in a new IE window full screen, does anyone know if you can change this?

1 Solution

Accepted Solutions
vgutkovsky
Master II
Master II

Fernando,

See my last post on this page: http://community.qlik.com/forums/t/24285.aspx. You just need to modify the OpenLink function to add window size. So it would look like this:


function OpenLink(object) {
window.open(object.name,'mywindow','toolbar=no,location=no,directories=yes,status=yes,menubar=no,fullscreen=yes,scrollbars=no,copyhistory=yes, resizable=yes');
}


Regards,

View solution in original post

2 Replies
vgutkovsky
Master II
Master II

Fernando,

See my last post on this page: http://community.qlik.com/forums/t/24285.aspx. You just need to modify the OpenLink function to add window size. So it would look like this:


function OpenLink(object) {
window.open(object.name,'mywindow','toolbar=no,location=no,directories=yes,status=yes,menubar=no,fullscreen=yes,scrollbars=no,copyhistory=yes, resizable=yes');
}


Regards,

Not applicable
Author

Great !

Perfect !

Thanks !