Knowledgebase
Knowledgebase
Appeon Web - IE address bar and menu bar in Web application
Posted by Carmina Garcia on 06 December 2013 05:02 PM

Due to new protection mechanism in Microsoft, address bar in IE 7/8/9/10 cannot be hidden directly without doing settings within IE. For more details please check the following pages:  at: http://support.microsoft.com/kb/944816. We also stated it in our help documentation at: http://www.appeon.com/support/documents/appeon_online_help/1.5/server_configuration_guide_for_net/ch04s04.html#IE_Views_Settings

However, you can use one of the workarounds as below to hide the address bar and menu bar in IE. Please be aware that in some machines these workarounds does not work. 

Workaround #1- Go to the application folder under the Web root of the Web server, and create an HTML file named appeon.html to include the Java script as below to load the Web application, and run the application with URL: http://133.227.182.64/findfile/appeon.html 

 Workaround #2- Go to the application folder under the Web root of the Web server, replace the content of the original index.html with the Java script below, and run yourapplication with the URL:

http://133.227.182.64/findfile/index.html.

 

<html>

<head>

<title>Appeon Web Library </title>

</head>

<script language="javascript">

function startApp() {

var iwidth = 0

if(screen.width>1024)

iwidth = (screen.width / 2) - 506;

var iheight = 0

if(screen.height>768)

iheight = (screen.height / 2) - 350;

var iparam = "width=1013,height=700,top=" + iheight + ",left=" + iwidth + ",location=no,directories=no,titlebar=no,toolbar=no,fullscreen=yes,menubar=no,status=+ no,scrollbars=yes,resizable=yes"

g_newWindow = window.open("index.htm" + window.location.search,"_blank", iparam,false);

window.opener=null;

window.open("","_self");

window.close();

}

</script>

<body>

<script language="javascript">

startApp()

</script>

</body>

</html>

 

 

(0 vote(s))
Helpful
Not helpful

Comments (0)
Help Desk by Novalys