GWT 2.6.0 how to enable switching Internet Explorer 6/7

GWT 2.6.0 Release Notes: "ie6 permutation (which also handles IE 7) is now disabled by default. Support for IE6 and IE7 will be removed in the next major version of GWT." Legal Notice Notes: http://www.gwtproject.org/release-notes.html#Release_Notes_2_6_0

IE6 permutation is disabled by default. But how can I enable ie6 substitution so that my application works with ie6 and ie7?

Justified question: is the module.xml file the only way to enable permutation. What about the flag for the gwt compiler?

+6
source share
2 answers

You can enable ie6 permutation in your module descriptor by adding this line of code:

<extend-property name="user.agent" values="ie6" /> 
+7
source

I thought we documented it somewhere, but anyway, just add this to your gwt.xml:

 <extend-property name="user.agent" value="ie6" /> 
+2
source

All Articles