I am creating an application using GWT 2.0.1; it performs 6 calculations and works well in all browsers except IE8, it shows a blank page (but can be viewed in IE8 compatibility mode).
When I add a line to my gwt.xml <set-property name = "user.agent" value = "ie8" /> it compiles only one permutation and the application renders IE8 perfectly. However, if I add the line <set-property name = "user.agent" value = "ie8, gecko, gecko1_8, safari, opera" /> it compiles all permutations, but the application still cannot be viewed in IE8, but It works correctly in all other browsers.
Is there any other method to ensure that my application runs in all browsers?
source share