Hello All,
I have a problem with Internet Explorer 8. In fact, when I deploy my application and I try to view it with IE8: The image (skin) are not found.
As long as I stay on "eclipse ", everything appears fine, but if I deploy on Tomcat, I have more images (see attachment).
I read the forum lots of times:
- I removed the "doctype"
- I put before nocache.js:
What is most strange is that this problem only appears when copying the WAR file in Tomcat. If I am in Eclipse it works well
But nothing to do.
Can you help me? I do not know what to do.
here is my code:
Thanks a lot
I have a problem with Internet Explorer 8. In fact, when I deploy my application and I try to view it with IE8: The image (skin) are not found.
As long as I stay on "eclipse ", everything appears fine, but if I deploy on Tomcat, I have more images (see attachment).
I read the forum lots of times:
- I removed the "doctype"
- I put before nocache.js:
Code:
<script> isomorphicDir var = "xxx / sc /"; </ script>
But nothing to do.
Can you help me? I do not know what to do.
here is my code:
Code:
<inherits name='com.smartgwt.SmartGwtNoTheme'/> <inherits name="com.smartgwt.tools.SmartGwtTools" /> <inherits name="com.smartclient.theme.enterpriseblue.EnterpriseBlue"/><inherits name='com.google.gwt.user.User' /> <entry-point class='com.xx.xx.client.ZetesInterscanPortal' /> <source path='client' /> <inherits name="com.xx.xx.xxxx" />
Code:
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=7">
<link type="text/css" rel="stylesheet" href="xx.css">
<title>title pagePortal</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script>
var isomorphicDir = "xxx/sc/";
</script>
<script type="text/javascript" language="javascript" src="xxx/xxx.nocache.js"></script>
</head>
<body>
<iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
<noscript>
<div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
Your web browser must have JavaScript enabled
in order for this application to display correctly.
</div>
</noscript>
</body>
</html>