MGL I found these threads on VML in the jQuery Discussion group as
well.. They may be of interest.

http://groups.google.com/group/jquery-dev/browse_thread/thread/b9d68f827a5173c5/19d8e95e3602d0b8?lnk=gst&q=VML#19d8e95e3602d0b8

http://groups.google.com/group/jquery-dev/browse_thread/thread/9bd6b0f190ca94b8/b8b6af2954a1807e?lnk=gst&q=VML#b8b6af2954a1807e

On Feb 12, 9:57 pm, Nikola <[email protected]> wrote:
> Right, I realized that a moment or two after changing it.. heh
>
> On Feb 12, 8:45 pm, mgl <[email protected]> wrote:
>
> > I'm pretty sure you won't need to replace :visible anywhere else, as
> > that's what the change to jQuery.fn.is is supposed to fix..  Any time
> > you use ':visible' in a selector, it should be substituted with
> > ':isVisible'.  At least that's if I understand what's happening
> > correctly.
>
> > On Feb 13, 1:50 pm, Nikola <[email protected]> wrote:
>
> > > It can be really time consuming, but I've learned a lot from this.
> > > Awesome work, I'm sure this will help a lot of jQuery users.  I'm not
> > > sure where my problem lies at the moment.  I'm using 1.3.1 and 1.6rc6
> > > and am having a look at the UI right now.  If I run everything as is
> > > with :visible renamed and replaced my tabs are basically running the
> > > load animation twice and at time reverting to pane one before loading
> > > the correct pane.  I tried replacing all occurrences of :visible in
> > > the UI as well but for some reason that recreated the original problem
> > > I had with the Dialog Window freezing IE up.
>
> > > On Feb 12, 7:39 pm, mgl <[email protected]> wrote:
>
> > > > Awesome - thanks for confirming that.  I thought maybe I was going a
> > > > bit nuts there.
>
> > > > Tabs seem to work for me.  I'm on jQuery 1.3.1 / UI 1.6rc6 - is that
> > > > the same for you?
>
> > > > Do you have anything other objects or statements that use the name
> > > > 'visible' as a property or method?  I also ran into trouble when I
> > > > bound events named 'resize' to divs.  A few things like that have
> > > > cropped up, but I can't think of them right now.
>
> > > > Another thing that kind-of concerned me was the use of 'namespaces' as
> > > > a variable name in jQuery, because IE has a property called
> > > > document.namespaces, which is a collection of namespace objects.  My
> > > > code searches this collection to check if a vml namespace has already
> > > > been created, and if not then it creates one, like so:
>
> > > > myclass.initVML = function()
> > > > {
> > > >         var nsLoaded = F;
> > > >         $.each(document.namespaces,function(i,v){
> > > >                 if (v.urn=="urn:schemas-microsoft-com:vml")
> > > >                 {
> > > >                         nsLoaded = T; return F;
> > > >                 }
> > > >         });
>
> > > >         if(!nsLoaded)
> > > >         {
> > > >                 document.namespaces.add("v", 
> > > > "urn:schemas-microsoft-com:vml");
> > > >                 var style = document.createStyleSheet();
> > > >                 style.addRule('v\\:*', "behavior: url(#default#VML); 
> > > > position:
> > > > absolute; display: inline-block;");
> > > >         }
>
> > > > }
>
> > > > I don't know if that has potential to get mixed up with namespace(s)
> > > > variable names in jQuery.
>
> > > > I'll tinker around a bit to make sure nothing is wrong with tabs in my
> > > > case, but I've already chewed up about two days' worth of time on
> > > > this, so I might have to take a brake from it and get the rest of my
> > > > work moving again.
>
> > > > On Feb 13, 1:22 pm, Nikola <[email protected]> wrote:
>
> > > > > Very nice, this definitly fixed the problem with Dialog but I'm having
> > > > > some problems with tabs and dialog options now...
>
> > > > > On Feb 12, 6:04 pm, mgl <[email protected]> wrote:
>
> > > > > > Can anyone else check if my post here solves this 
> > > > > > problem:http://dev.jquery.com/ticket/3265
>
> > > > > > It does in my case - but I don't know whether I've identified the 
> > > > > > real
> > > > > > problem.
>
> > > > > > On Feb 13, 5:20 am, mgl <[email protected]> wrote:
>
> > > > > > > Is there any progress on this issue?  I've been using VML in the
> > > > > > > application I'm developing...but I do most of my development work 
> > > > > > > in
> > > > > > > FF.  I upgraded to jQuery 1.3.1 / UI 1.6rc6.  Everything seemed 
> > > > > > > fine -
> > > > > > > VML still works in some cases, but it seems that as soon as 
> > > > > > > something
> > > > > > > alters the style property of a VML element, that's the end.  It's 
> > > > > > > very
> > > > > > > hard to debug, but if I can help in any way let me know.
>
> > > > > > > On Feb 4, 1:24 pm, Nikola <[email protected]> wrote:
>
> > > > > > > > There is actually a jQuery Development ticket on this as well.  
> > > > > > > >  The
> > > > > > > > problem is the same down to having to restart the browser, 
> > > > > > > > which I
> > > > > > > > didn't mention as I thought it was a browser glitch, in order to
> > > > > > > > restart the application.
>
> > > > > > > > jQuery Bug Trackerhttp://dev.jquery.com/ticket/3265
>
> > > > > > > > On Feb 3, 7:13 pm, Nikola <[email protected]> wrote:
>
> > > > > > > > > According to Jonah, the creator of the Cornerz plug-in, the 
> > > > > > > > > problem is
> > > > > > > > > occurring on the 'jQuery select' and is related to the VML 
> > > > > > > > > insertion
> > > > > > > > > in MSIE.
>
> > > > > > > > > On Feb 2, 8:42 am, Nikola <[email protected]> wrote:
>
> > > > > > > > > > Thanks for the reply Richard. This is the same bug I 
> > > > > > > > > > mentioned in the
> > > > > > > > > > Dialog overlay post I made a few days ago.  I tried to 
> > > > > > > > > > determine what
> > > > > > > > > > the problem was to no avail.  So, in the hope that someone 
> > > > > > > > > > may be
> > > > > > > > > > familiar with this, I created a new topic as the mention of 
> > > > > > > > > > this bug
> > > > > > > > > > in the overlay post could easily be overlooked.
>
> > > > > > > > > > I did submit a ticket which was closed as the problem may 
> > > > > > > > > > be with the
> > > > > > > > > > plug ins and not the UI Dialog.  I'm not really able to 
> > > > > > > > > > determine what
> > > > > > > > > > the problem is but I can confidently say that script 
> > > > > > > > > > 'breaks' only
> > > > > > > > > > when the dialog is opened.  Here's a link to the bug report 
> > > > > > > > > > as well as
> > > > > > > > > > a link to the 'Cornerz' Discussion Group.  Jonah, the 
> > > > > > > > > > creator of the
> > > > > > > > > > 'Bullet Proof Corners' plug-in got back to me and is 
> > > > > > > > > > looking this over
> > > > > > > > > > as well.  I wish I could be of more help.
>
> > > > > > > > > > UI Development Tickethttp://dev.jqueryui.com/ticket/4020
>
> > > > > > > > > > Cornerz Discussion 
> > > > > > > > > > Grouphttp://groups.google.com/group/cornerz/browse_thread/thread/95ed7ffaa...
>
> > > > > > > > > > Edited for typos...  coffee time..
>
> > > > > > > > > > On Feb 2, 8:36 am, "Richard D. Worth" <[email protected]> 
> > > > > > > > > > wrote:
>
> > > > > > > > > > > Thanks for that detailed information. I hope we can find 
> > > > > > > > > > > where the problem
> > > > > > > > > > > is, and a solution.
>
> > > > > > > > > > > - Richard
>
> > > > > > > > > > > On Mon, Feb 2, 2009 at 8:32 AM, Nikola 
> > > > > > > > > > > <[email protected]> wrote:
>
> > > > > > > > > > > > Thanks for the reply Richard. This is the same bug I 
> > > > > > > > > > > > mentioned in the
> > > > > > > > > > > > Dialog overlay post I made a few days ago.  I tried to 
> > > > > > > > > > > > determine what
> > > > > > > > > > > > the problem was to no avail.  So, in the hope that 
> > > > > > > > > > > > someone may be
> > > > > > > > > > > > familiar with this, I created a new topic as the 
> > > > > > > > > > > > mention of this bug
> > > > > > > > > > > > in the overlay post could easily be overlooked.
>
> > > > > > > > > > > > I did submit a ticket was closed as the problem may lay 
> > > > > > > > > > > > the plug ins
> > > > > > > > > > > > and not the UI Dialog.  I'm not really able to 
> > > > > > > > > > > > determine what the
> > > > > > > > > > > > problem is but I can confidently say that js 'breaks' 
> > > > > > > > > > > > only when the
> > > > > > > > > > > > dialog is opened.  Here's a link to the bug report as 
> > > > > > > > > > > > well as a link
> > > > > > > > > > > > to the 'Cornerz' Discussion Group.  Jonah, the creator 
> > > > > > > > > > > > of the 'Bullet
> > > > > > > > > > > > Proof Corners' plug-in got back to me and is looking 
> > > > > > > > > > > > this over as
> > > > > > > > > > > > well.  I wish I could be of more help.
>
> > > > > > > > > > > > UI Development Ticket
> > > > > > > > > > > >http://dev.jqueryui.com/ticket/4020
>
> > > > > > > > > > > > Cornerz Discussion Group
>
> > > > > > > > > > > >http://groups.google.com/group/cornerz/browse_thread/thread/95ed7ffaa...
>
> > > > > > > > > > > > On Feb 2, 8:05 am, "Richard D. Worth" 
> > > > > > > > > > > > <[email protected]> wrote:
> > > > > > > > > > > > > Interesting bug. Would you mind entering a ticket here
>
> > > > > > > > > > > > >http://dev.jqueryui.com/newticket(requires<http://dev.jqueryui.com/newticket%28requires>registration)
>
> > > > > > > > > > > > > we'll take a look as soon as possible. Thanks.
>
> > > > > > > > > > > > > - Richard
>
> > > > > > > > > > > > > On Mon, Feb 2, 2009 at 3:16 AM, Nikola 
> > > > > > > > > > > > > <[email protected]> wrote:
>
> > > > > > > > > > > > > > Is anyone familiar with this?
>
> > > > > > > > > > > > > > On Feb 1, 6:52 am, Nikola <[email protected]> 
> > > > > > > > > > > > > > wrote:
> > > > > > > > > > > > > > > I am about 99% sure that this problem is limited 
> > > > > > > > > > > > > > > to UI Dialog at this
> > > > > > > > > > > > > > > point.  I tried various corner rounding plug-ins 
> > > > > > > > > > > > > > > in pages with
> > > > > > > > > > > > > > > multiple UI widgets and animations and I haven't 
> > > > > > > > > > > > > > > had a single
> > > > > > > > > > > > > > > problem.  Tabs nested within tabs, alerts, 
> > > > > > > > > > > > > > > animations, form
> > > > > > > > > > > > > > > validation, galleria, jcarousel, columnhover, 
> > > > > > > > > > > > > > > tablesorter as well as
> > > > > > > > > > > > a
> > > > > > > > > > > > > > > few small plug-ins I wrote all work as intended 
> > > > > > > > > > > > > > > up until I open a
> > > > > > > > > > > > > > > Dialog window.  I am baffled..
>
> > > > > > > > > > > > > > > On Jan 31, 9:11 pm, Nikola <[email protected]> 
> > > > > > > > > > > > > > > wrote:
>
> > > > > > > > > > > > > > > > Hello,
>
> > > > > > > > > > > > > > > > I am trying to figure out why rounding corners 
> > > > > > > > > > > > > > > > in a page that uses
> > > > > > > > > > > > a
> > > > > > > > > > > > > > > > Dialog breaks jQuery in IE7.  I am working with 
> > > > > > > > > > > > > > > > the 'Bullet Proof
> > > > > > > > > > > > > > > > Round Corners' and 'JRC 0.91' corner plug-ins 
> > > > > > > > > > > > > > > > which are both great.
>
> > > > > > > > > > > > > > > > I'd really appreciate some input on this one.  
> > > > > > > > > > > > > > > > Has anyone had this
> > > > > > > > > > > > > > > > problem before or familiar with the problem?  
> > > > > > > > > > > > > > > > Any advice or known
> > > > > > > > > > > > > > > > fixes?  Here's a paste to an example:
>
> ...
>
> read more »
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to