oliholz
oliholz

Reputation: 7507

GWT Browser distinction in Client

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
}

Upvotes: 5

Views: 120

Answers (1)

oliholz
oliholz

Reputation: 7507

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?

Upvotes: 4

Related Questions