开发者

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
}


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?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜