Hi,
I am using eclipse 3.4.2 with gwt 2.0 , when i run gwt program using
firefox and chrome it is working fine but when i try to run same
program in IE8 (internet explorer) it is not showing any result ,
only small module it work not with complex module .
I have also added emulateIE7 in head of jsp with is given below
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
....
</html>
also added replace-with in module gwt.xml file like
<module rename-to='Payment'>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name="com.google.gwt.core.Core"/>
<inherits name="com.google.gwt.dom.DOM"/>
<inherits name="com.google.gwt.user.UserAgent"/>
<replace-with class="com.google.gwt.user.client.impl.DOMImplOpera">
<when-type-is class="com.google.gwt.user.client.impl.DOMImpl"/>
<when-property-is name="user.agent" value="opera"/>
</replace-with>
<replace-with class="com.google.gwt.user.client.impl.DOMImplSafari">
<when-type-is class="com.google.gwt.user.client.impl.DOMImpl"/>
<when-property-is name="user.agent" value="safari"/>
</replace-with>
<replace-with class="com.google.gwt.user.client.impl.DOMImplIE8">
<when-type-is class="com.google.gwt.user.client.impl.DOMImpl"/>
<when-property-is name="user.agent" value="ie8"/>
</replace-with>
<replace-with class="com.google.gwt.user.client.impl.DOMImplIE6">
<when-type-is class="com.google.gwt.user.client.impl.DOMImpl"/>
<when-property-is name="user.agent" value="ie6"/>
</replace-with>
<replace-with class="com.google.gwt.user.client.impl.DOMImplMozilla">
<when-type-is class="com.google.gwt.user.client.impl.DOMImpl"/>
<when-property-is name="user.agent" value="gecko1_8"/>
</replace-with>
<replace-with
class="com.google.gwt.user.client.impl.DOMImplMozillaOld">
<when-type-is class="com.google.gwt.user.client.impl.DOMImpl"/>
<when-property-is name="user.agent" value="gecko"/>
</replace-with>
.......
.....
</module>
When i try to change IE8 setting using developer tools like browser
mode :IE8 or IE8 compatible view,and Document mode :IE8 standard, it
is working but when i try to change to different mode it is not
working
can any one help me over this.
thanks in advance .
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.