We have the exact same situation. All you really need to do is create a property provider override for the user.agent property in your GWT module xml file. All I did was grab the user agent detection script from the UserAgent.xml module in the latest 1.6 release and paste it into my module file. This will result in you getting the IE6 user agent detection for IE6/7/8...since IE8 can use an IE7 render mode, for the most part your app should work/render fine.
On Jul 31, 2:00 am, Roland <[email protected]> wrote: > Hello, > > I've built a gwt application which currently is based on gwt version > 1.3.3 > > I haven't had any problems loading it with IE 6,7 ,FF3-3.5 and Chrome > but with IE 8 all I get is: > > "While attempting to load module ... , property "user.agent" was set > to unexpected value "unknown" ... " > > I understand it is a user agent issue and I've tried to add this > property to module's gwt.xml like this: > > <set-property name="user.agent" value="ie8" /> > <set-property name="user.agent" > value="ie6,gecko,gecko1_8,safari,opera,ie8" /> > > sadfully neither gives expected result. > > As gwt version upgrade comes as last option, I'd like to ask you, > whether there are some ways to get my app shown with IE8 without > upgrading gwt libraries. > > Thanks in advance, > Roland --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
