Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Having VML working in IE8 standard mode
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
  8 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
 
lrbabe  
View profile  
 More options Nov 29 2008, 6:19 pm
From: lrbabe <lrb...@gmail.com>
Date: Sat, 29 Nov 2008 15:19:54 -0800 (PST)
Local: Sat, Nov 29 2008 6:19 pm
Subject: Having VML working in IE8 standard mode
it seems that Microsoft finally gave the solution to use VML in IE8:
https://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackI...
See how guys at dojo implemented it: http://trac.dojotoolkit.org/ticket/7658

if(!document.documentMode || document.documentMode<8) {
  document.createStyleSheet().addRule('v\\:*', "behavior: url
(#default#VML);");

}

if(document.documentMode && document.documentMode>=8) {
  document.writeln('<?import namespace="v"
implementation="#default#VML" ?>');


    Reply to author    Forward  
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.
lrbabe  
View profile  
 More options Nov 29 2008, 6:32 pm
From: lrbabe <lrb...@gmail.com>
Date: Sat, 29 Nov 2008 15:32:13 -0800 (PST)
Local: Sat, Nov 29 2008 6:32 pm
Subject: Re: Having VML working in IE8 standard mode
And there seems to be another solution working across all versions of
IE:

document.namespaces.add("v","urn:schemas-microsoft-
com:vml","#default#VML");

I haven't tested it yet.


    Reply to author    Forward  
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.
Erik Arvidsson  
View profile  
 More options Nov 29 2008, 7:26 pm
From: "Erik Arvidsson" <erik.arvids...@gmail.com>
Date: Sat, 29 Nov 2008 16:26:39 -0800
Local: Sat, Nov 29 2008 7:26 pm
Subject: Re: Having VML working in IE8 standard mode
2008/11/29 lrbabe <lrb...@gmail.com>:

> And there seems to be another solution working across all versions of
> IE:

> document.namespaces.add("v","urn:schemas-microsoft-
> com:vml","#default#VML");

This is the solution we have always used in ExCanvas.

--
erik


    Reply to author    Forward  
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.
lrbabe  
View profile  
 More options Nov 30 2008, 6:42 am
From: lrbabe <lrb...@gmail.com>
Date: Sun, 30 Nov 2008 03:42:21 -0800 (PST)
Local: Sun, Nov 30 2008 6:42 am
Subject: Re: Having VML working in IE8 standard mode
No it's not. Currently we use:
if (!doc.namespaces['g_vml_']) {
        doc.namespaces.add('g_vml_', 'urn:schemas-microsoft-com:vml');

}

without "#default#VML" as a third argument.

    Reply to author    Forward  
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.
Erik Arvidsson  
View profile  
 More options Nov 30 2008, 7:02 pm
From: "Erik Arvidsson" <erik.arvids...@gmail.com>
Date: Sun, 30 Nov 2008 16:02:40 -0800
Local: Sun, Nov 30 2008 7:02 pm
Subject: Re: Having VML working in IE8 standard mode

I see.
However, this code does not work on IE8b2. Maybe it will work on IE8rc1?

On Sun, Nov 30, 2008 at 03:42, lrbabe <lrb...@gmail.com> wrote:

> No it's not. Currently we use:
> if (!doc.namespaces['g_vml_']) {
>        doc.namespaces.add('g_vml_', 'urn:schemas-microsoft-com:vml');
> }

> without "#default#VML" as a third argument.

--
erik

    Reply to author    Forward  
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.
lrbabe  
View profile  
 More options Nov 30 2008, 8:38 pm
From: lrbabe <lrb...@gmail.com>
Date: Sun, 30 Nov 2008 17:38:27 -0800 (PST)
Local: Sun, Nov 30 2008 8:38 pm
Subject: Re: Having VML working in IE8 standard mode
It's our last hope to get dynamic vml insertion working in IE8.
If it not, it only means that Microsoft is forcing us to use
Silverlight. Am I right ?

    Reply to author    Forward  
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.
Erik Arvidsson  
View profile  
 More options Dec 8 2008, 2:58 am
From: "Erik Arvidsson" <erik.arvids...@gmail.com>
Date: Sun, 7 Dec 2008 23:58:35 -0800
Local: Mon, Dec 8 2008 2:58 am
Subject: Re: Having VML working in IE8 standard mode
I just update excanvas.js to work in IE8 betas.  Please get revision
43 and tell me how it works for you.

--
erik

On Sun, Nov 30, 2008 at 17:38, lrbabe <lrb...@gmail.com> wrote:

> It's our last hope to get dynamic vml insertion working in IE8.
> If it not, it only means that Microsoft is forcing us to use
> Silverlight. Am I right ?

--
erik

    Reply to author    Forward  
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.
Fabien  
View profile  
 More options Dec 8 2008, 12:39 pm
From: Fabien <phenxdes...@gmail.com>
Date: Mon, 8 Dec 2008 09:39:36 -0800 (PST)
Local: Mon, Dec 8 2008 12:39 pm
Subject: Re: Having VML working in IE8 standard mode
Hi ! it works fine for me on IE8 Beta 2 (tested with the latest Flotr
revision)
It works using all the available modes of the beta.

Thank you very much for this upgrade :)

On 8 déc, 08:58, "Erik Arvidsson" <erik.arvids...@gmail.com> wrote:


    Reply to author    Forward  
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 »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google