Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
webtoolkit and IE7
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Stefan  
View profile  
 More options May 20 2006, 4:26 am
From: "Stefan" <sugarste...@gmail.com>
Date: Sat, 20 May 2006 01:26:48 -0700
Local: Sat, May 20 2006 4:26 am
Subject: webtoolkit and IE7
Hello fellow coders.

I am new to this web toolkit, so I don't have that much experience.
Anyway I testet the Hello application in Internet Explore 7, and it
doesn't seem to work. Is there a compatibility issue with this
browser??


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
marco.slot@gmail.com  
View profile  
 More options May 20 2006, 7:32 am
From: "marco.s...@gmail.com" <marco.s...@gmail.com>
Date: Sat, 20 May 2006 04:32:52 -0700
Local: Sat, May 20 2006 7:32 am
Subject: Re: webtoolkit and IE7
I wouldn't call it a compatibility issue. IE7 beta is not supported at
all (no script library will be loaded). You could try hacking it into
the nocache file, using the IE6 library might work.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Stefan  
View profile  
 More options May 21 2006, 6:38 am
From: "Stefan" <sugarste...@gmail.com>
Date: Sun, 21 May 2006 10:38:09 -0000
Local: Sun, May 21 2006 6:38 am
Subject: Re: webtoolkit and IE7
Thanks. IE sucks anyway ;-)

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
jack.tang  
View profile  
 More options May 21 2006, 6:54 am
From: "jack.tang" <him...@gmail.com>
Date: Sun, 21 May 2006 10:54:36 -0000
Local: Sun, May 21 2006 6:54 am
Subject: Re: webtoolkit and IE7
I have no ie7 in my hands. But i think maybe it is easy to hack this.

You can find UserAgent.gwt.xml in gwt-user.jar. Below is the content.
<!--
    -->
<!-- Copyright 2006 Google Inc. All Rights Reserved.
    -->
<!-- Defines the user.agent property and its provider function.
    -->
<!--
    -->
<!-- This module is typically inherited via com.google.gwt.user.User.
     -->
<!--
    -->
<module>

        <!-- Browser-sensitive code should use the 'user.agent' property -->
        <define-property name="user.agent"
values="ie6,moz,oldmoz,safari,opera"/>

        <property-provider name="user.agent"><![CDATA[
      var ua = navigator.userAgent.toLowerCase();
      if (ua.indexOf("opera") != -1) {
        return "opera";
      }
      else if (ua.indexOf("safari") != -1) {
        return "safari";
      }
      else if (ua.indexOf("msie 6.0") != -1) {
        return "ie6";
          }
      else if (ua.indexOf("mozilla") != -1) {
          var geckoIdx = ua.indexOf("gecko/");
          if (geckoIdx == -1)
                return "oldmoz";

          var spaceIdx = ua.indexOf(" ", geckoIdx);
          if (spaceIdx == -1)
                spaceIdx = ua.length;

          var version = parseInt(ua.substring(geckoIdx + 6, spaceIdx));
          if (version < 20051107) // Firefox1.5's Gecko version
                return "oldmoz";
          return "moz";
      }
      return "unknown";
        ]]></property-provider>

</module>

try to change this line
      else if (ua.indexOf("msie 6.0") != -1) {
 to
      else if(ua.indexOf("msie 6.0") != -1 || ua.indexOf("msie 7.0") !=
-1  )

Hope it helps


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sentience  
View profile  
 More options May 23 2006, 10:35 pm
From: "Sentience" <kevy...@gmail.com>
Date: Tue, 23 May 2006 19:35:17 -0700
Local: Tues, May 23 2006 10:35 pm
Subject: Re: webtoolkit and IE7
This hack worked for me. I've got the KitchenSink sample running in
Hosted Mode with IE 7.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
3rojka  
View profile  
 More options May 25 2006, 7:13 am
From: "3rojka" <radek.rie...@gmail.com>
Date: Thu, 25 May 2006 11:13:49 -0000
Local: Thurs, May 25 2006 7:13 am
Subject: Re: webtoolkit and IE7
Worked for me too thanks a million.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »