Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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?

Labels (1)
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 !