I try to find the current Browser for an specific Hack in GWT.
like: (View-class)
if( GWT.getBrowserName().contains("IE") ) {
// DOM.setElementPropertyBoolean( ... Hack
}else {
// normal stuff
}
I found a ugly solution:
Creating a class for each bowser and mapping it in the gwt.xml
public class BrowserIE6 extends Browser {
public boolean isIE6() { return true; }
public boolean isIE7() { return false; }
...
}
<replace-with class="com.project.client.style.BrowserIE6">
<when-type-is class="com.project.client.style.Browser" />
<when-property-is name="user.agent" value="ie6" />
</replace-with>
<replace-with class="com.project.client.style.BrowserIE7">
<when-type-is class="com.project.client.style.Browser" />
<when-property-is name="user.agent" value="ie7" />
</replace-with>
...
But is there an easy way to do this?
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With