github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

jquery / jquery-ui

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 563
    • 91
  • Source
  • Commits
  • Network (91)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Switch Branches (7)
    • bind
    • devpreview
    • formcontrols
    • master ✓
    • menu
    • panel
    • tooltip
  • Switch Tags (18)
    • 1.9m1
    • 1.8rc3
    • 1.8rc2
    • 1.8rc1
    • 1.8b1
    • 1.8a2
    • 1.8a1
    • 1.8.2
    • 1.8.1
    • 1.8
    • 1.7
    • 1.6rc6
    • 1.6rc5
    • 1.6rc3
    • 1.6rc2
    • 1.6
    • 1.5.2
    • 1.5.1
  • Comments
  • Contributors

Comments for jquery-ui   feed

idlesign commented on jquery/jquery-ui Thu May 20 08:22:00 -0700 2010
Comment in 8096986:

Hi Jörn,

As I understand this panel (i.e. new accordion) has almost no relation to panel (content grouping) widget which concept is described at pbworks, and that's a confusing thing to know. You see, I think that essentially accordion could be composed out of panels (as in ist-ui-panel with 'accordion' option), but not vice versa. What's your opinion?

And another thing: is there any sense from the point of accessability to hide accordion icons? If all accordion panels are collapsed how one should know that this control accepts clicks and could be opened?

lachlanhardy commented on jquery/jquery-ui Mon May 17 21:56:55 -0700 2010
Comment in a4488af:

Any chance we can get 1.8.2 released to include this soon?

andyshora commented on jquery/jquery-ui Wed May 12 03:21:49 -0700 2010
Comment in a4488af:

Excellent work guys, this bug had me for a while!

ornicar commented on jquery/jquery-ui Wed May 05 03:18:54 -0700 2010
Comment in 3291d39:

I fixed it on my fork, and sent a pull request.

jzaefferer commented on jquery/jquery-ui Wed May 05 02:31:51 -0700 2010
Comment in 3291d39:

.apply(self should be .apply(this, as mentioned here: http://forum.jquery.com/topic/sortable-21-4-2010

jzaefferer commented on jquery/jquery-ui Wed Apr 28 14:19:43 -0700 2010
Comment in 57c5b07:

Viewable on http://view.jqueryui.com/master/tests/visual/theme.html

Of to a good start. We need to inline the dialog. And various variations of all widgets: Accordion without icons, vertical slider, various additional datepicker controls...

scottgonzalez commented on jquery/jquery-ui Sat Apr 24 12:18:39 -0700 2010
Comment in 3570c1f:

COMMAND/COMMAND_LEFT/WINDOWS is the command (meta) key on Apple keyboards and the Windows key on Windows keyboards. COMMAND_RIGHT/MENU is the command key on the right side of Apple keyboards and the (context) menu key on the right side of Windows keyboards.

jzaefferer commented on jquery/jquery-ui Sat Apr 24 07:53:48 -0700 2010
Comment in 3570c1f:

Whats COMMAND and variants and MENU supposed to be?

jzaefferer commented on jquery/jquery-ui Wed Apr 14 00:19:48 -0700 2010
Comment in acfc66e:

Noticed that after pushing it...

jzaefferer commented on jquery/jquery-ui Thu Apr 08 15:12:58 -0700 2010
Comment in 55dc0bb:

Sounds good!

rdworth commented on jquery/jquery-ui Thu Apr 08 15:12:09 -0700 2010
Comment in 55dc0bb:

@Jorn: That's interesting, but it shouldn't change our implementation, right? Caus now we support people using html that wouldn't otherwise work in IE6 because we'll add the missing for=id attribute. It only means if they want it to work in IE6 without JavaScript, they'll need the attribute in the html.

jzaefferer commented on jquery/jquery-ui Thu Apr 08 13:38:17 -0700 2010
Comment in 55dc0bb:

Actually IE6 always requires the for-attribut.

rdworth commented on jquery/jquery-ui Thu Apr 08 12:12:11 -0700 2010
Comment on ui/jquery.ui.checkbox.js L22 in 1f0710d:

Ok, turns out .closest( "label" ) was useful in the case that the checkbox is inside the label. Otherwise we search the document. Fixed up in 93c3e89

rdworth commented on jquery/jquery-ui Thu Apr 08 12:10:47 -0700 2010
Comment in 55dc0bb:

Good point. Fixed in 93c3e89

ehynds commented on jquery/jquery-ui Thu Apr 08 11:25:48 -0700 2010
Comment in 55dc0bb:

iirc, a label only requires the "for" attribute when the input is outside the label. should the checkbox's parent be checked first to see if it's the label?

rdworth commented on jquery/jquery-ui Thu Apr 08 10:27:02 -0700 2010
Comment on ui/jquery.ui.checkbox.js L22 in 1f0710d:

We can't really assume anything about the proximity of the checkbox and its label, though in many common scenarios they won't be too far away from one another. But they might be in different cells in a table, each wrapped in their own div or span or one on its own and the other wrapped in some sibling element. What we know is the user asked us to turn the input[type=checkbox] into a jQuery UI checkbox, so that element will stay where it is and be wrapped in the necessary generated div and the label moved from wherever it might be into the same.

I'm not sure how .closest() would help us here since it wouldn't find the nearest label, .closest() walks up the parent tree starting with the current element. So that would only work if the checkbox were inside the label (which is sometimes done but not a rule). But we can't do .closest("fieldset") nor .closest("form") to find some common container since we don't know for sure that the the checkbox is in either. We know it's in its document and we know the label is in the same document and the for of one matches the id of the other.

StevenBlack commented on jquery/jquery-ui Thu Apr 08 09:11:58 -0700 2010
Comment on ui/jquery.ui.checkbox.js L22 in 1f0710d:

Just a (weak) example on my part (sorry). Another brain-fart: -- it's that kind of day -- is .siblings() would be too restrictive of course.

The real point being: the label is surely proximate to the control, especially a checkbox control. Going-up to the .ownerDocument and then filtering for a label's attribute is grossly inefficient in terms of finding a label that is likely proximate, no?

I see jQuery uses .closest() internally so maybe that would be a better route here?

scottgonzalez commented on jquery/jquery-ui Thu Apr 08 07:49:03 -0700 2010
Comment on ui/jquery.ui.checkbox.js L22 in 1f0710d:

Steven: Why would you have multiple tabs that with labels that point to the same checkbox?

StevenBlack commented on jquery/jquery-ui Thu Apr 08 07:39:51 -0700 2010
Comment on ui/jquery.ui.checkbox.js L22 in 1f0710d:

Thinking: .siblings() is probably fine here. The danger exposed here is, say, a tab interface with the same control on more than one panel. .siblings() protects from that.

jzaefferer commented on jquery/jquery-ui Mon Mar 29 07:07:55 -0700 2010
Comment in 4657bd8:

Cool, thanks. I'll update my Button Lite widget accordingly, putting it into a custom namespace instead of the ui-namespace.

Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server