ZIP Archive Issue
Hello, I am a newbie - not sure if this is the group I need to post to. I am able to download both 1.6rc6 and 1.5.3 on Windows platform: However, opening the archive throws an invalid archive message (use Winzip). However, there seems to be no issues with dl/opening the archive on RedHat. Any help would be appreciated. Thanks Sri
r2127 - trunk/themes/base
Author: scottjehl Date: Tue Feb 24 12:39:43 2009 New Revision: 2127 Modified: trunk/themes/base/ui.slider.css Log: Fixes ie6 bug where range blinks sometimes to a small height or width props to Todd Parker :) Modified: trunk/themes/base/ui.slider.css ============================================================================== --- trunk/themes/base/ui.slider.css (original) +++ trunk/themes/base/ui.slider.css Tue Feb 24 12:39:43 2009 @@ -2,7 +2,7 @@ ----------------------------------*/ .ui-slider
working on jQuery UI
@segalerez -- thanks for the interest in helping out with jQuery UI! We're always looking for developers to help move the project forward. :) There are a bunch of ways you can contribute and they're outlined in the Development center at <a href="http://jqueryui.com">jqueryui.com</a>: <a href="http://jqueryui.com/development">http://jqueryui.com/development</a>. At the moment we're very close to wrapping up 1.7 so the emphasis is on fixing any remaining critical and blocker bugs. Scott Gonzales,
ZIP Archive Issue
Folks, I am a newbie - not sure if this is the group I need to post to. I am able to download both 1.6rc6 and 1.5.3 on Windows platform: However, opening the archive throws an invalid archive message (use Winzip). However, there seems to be no issues when downloding this on RedHat. Any help would be appreciated. Thanks Sri
Current Blocker/Criticals
Hey everyone, I've digged through the current open blockers/criticals, here's what's left to do for some: <a href="http://dev.jqueryui.com/ticket/3952">http://dev.jqueryui.com/ticket/3952</a> - needs a attached test case (can someone convert the jsbin stuff and attach it?) <a href="http://dev.jqueryui.com/ticket/4188">http://dev.jqueryui.com/ticket/4188</a> - this one needs serious attention. I'm clueless, and I appreciate any input. <a href="http://dev.jqueryui.com/ticket/3994">http://dev.jqueryui.com/ticket/3994</a>
r2126 - trunk/ui
Author: rdworth Date: Mon Feb 23 04:57:33 2009 New Revision: 2126 Modified: trunk/ui/ui.slider.js Log: slider: only return false on handle keydown if one of arrow keys or pgup/down are pressed (otherwise tab is broken) Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original) +++ trunk/ui/ui.slider.js Mon Feb 23 04:57:33 2009 @@ -88,6 +88,8 @@ this.handles.keydown(function(event) { + var
Can 1.6 theming be hosted at google libs api?
I was wondering... can google host the UI CSS framework files as they do for javascript library scripts? It would be great if we could have ui.core.css, and all the ui.plugin.css files hosted in a cacheable location just like our JS. Even the default ui.theme.css would be nice to have on there, but the plugin files would be especially nice. Perhaps they'd even host a few gallery themes... w/ images?? Just a thought. -Scott
jQuery UI core does not pass W3C Validation
The jQuery UI core (1.6rc6 and below) causes an error during W3C Validation because of line 49: var tmp = $('<div class="ui-gen"></div>').addClass(.... jQuery already fixes all unclosed elements when it creates them... why not use $('<div class="ui-gen">').addClass... ? It has the same result and saves a few bytes... unless you guys have a reason to leave in the </div>. Although W3C validation is not the most important metric of proper coding and markup, it's always nice to see your page validate.
r2125 - trunk/ui
Author: klaus.hartl Date: Sun Feb 22 10:54:29 2009 New Revision: 2125 Modified: trunk/ui/ui.tabs.js Log: Tabs should not use toggleClass() for state handling, fixes #4212 Modified: trunk/ui/ui.tabs.js ============================================================================== --- trunk/ui/ui.tabs.js (original) +++ trunk/ui/ui.tabs.js Sun Feb 22 10:54:29 2009 @@ -224,16 +224,25 @@ this.$lis.add(this.$tabs).unbind('.tabs'); if (o.event != 'mouseover') { - var handleState
r2124 - trunk/ui
Author: klaus.hartl Date: Sun Feb 22 09:40:16 2009 New Revision: 2124 Modified: trunk/ui/ui.tabs.js Log: Tabs: some refactoring to avoid redundant code Modified: trunk/ui/ui.tabs.js ============================================================================== --- trunk/ui/ui.tabs.js (original) +++ trunk/ui/ui.tabs.js Sun Feb 22 09:40:16 2009 @@ -91,7 +91,7 @@ href = a.hash; a.href = href; } - + // inline tab if
r2123 - trunk/ui
Author: klaus.hartl Date: Sun Feb 22 06:00:11 2009 New Revision: 2123 Modified: trunk/ui/ui.tabs.js Log: Tabs: fixed remaining JSLint warnings Modified: trunk/ui/ui.tabs.js ============================================================================== --- trunk/ui/ui.tabs.js (original) +++ trunk/ui/ui.tabs.js Sun Feb 22 06:00:11 2009 @@ -167,8 +167,10 @@ $.map(this.$lis.filter('.ui-state-disabled'), function(n, i) { return self.$lis.index(n); } ) )).sort();
r2122 - trunk/ui
Author: klaus.hartl Date: Sun Feb 22 04:11:44 2009 New Revision: 2122 Modified: trunk/ui/ui.tabs.js Log: Tabs: avoid !0 == true Modified: trunk/ui/ui.tabs.js ============================================================================== --- trunk/ui/ui.tabs.js (original) +++ trunk/ui/ui.tabs.js Sun Feb 22 04:11:44 2009 @@ -145,10 +145,10 @@ } }); } - if (!o.selected && o.cookie) { + if (typeof o.selected
r2120 - trunk/ui
Author: klaus.hartl Date: Sun Feb 22 03:54:00 2009 New Revision: 2120 Modified: trunk/ui/ui.tabs.js Log: Tabs: cookie was not considered if page url contains some fragment identifier, fixes #4210; fixed issue with jQuery 1.3.2 :visible selector; started to fix JSLint warnings... Modified: trunk/ui/ui.tabs.js ============================================================================== --- trunk/ui/ui.tabs.js (original) +++ trunk/ui/ui.tabs.js Sun Feb 22 03:54:00 2009 @@ -15,30 +15,31 @@ $.widget("ui.tabs",
r2121 - trunk/ui
Author: klaus.hartl Date: Sun Feb 22 04:01:33 2009 New Revision: 2121 Modified: trunk/ui/ui.tabs.js Log: removed invalid character, added missing semicolon Modified: trunk/ui/ui.tabs.js ============================================================================== --- trunk/ui/ui.tabs.js (original) +++ trunk/ui/ui.tabs.js Sun Feb 22 04:01:33 2009 @@ -151,14 +151,14 @@ if (!o.selected && this.$lis.filter('.ui-tabs-selected').length) { o.selected = this.$lis.index(this.$lis.filter('.ui-tabs-selected'));
Proposed removal of accurateIntersection option in Sortables
Hey everyone, we recently had the discussion already about hat to do with the accurateIntersection option in Sortables. For those that don't know the specifics, the only change this option brings is that if set to true, outerWidth/outerHeight is used instead of offsetWidth/offsetHeight for offset calculations. Now it seems that jQuery UI 1. 7 will most likely include jQuery 1.3.2, which brings major performance gains in the outerHeight/outerWidth methods, so I propose we remove the option entirely
very simple enhancement for ui.tabs, code included:
Dear all, I have filed a feature request sommme time ago, and shortly thereafter I found the solution inside the very own plugin code. We can programmatically select a tab in a ui.tabs widget by passing either the tab index or the href value which is contained in the tab- nav A element. I needed to remove a tab regardless of the order of the tabs, so I figured that using the same mechanism as the select() would be good (by href). Unfortunately, the current codebase does not support this. Then I filed
Strange behavior in sortable on Safari
If you create and make your window small enough that the user needs to scroll to the item list they want to sort the item is offset from the cursor the scrollLeft and scrollRight amount. You can see this by going to your Sortable Massive Scale Test and scrolling down to an item lower on the page. When you drag it, it will be offset from your cursor by what appears to be document.body.scrollLeft/scrollRight distance. I have a patch that corrects this on Safari and still works on firefox if anyone
r2119 - trunk/ui
Author: scott.gonzalez Date: Sat Feb 21 09:02:52 2009 New Revision: 2119 Modified: trunk/ui/ui.dialog.js Log: Dialog: When animating dialog close, wait until after the animation completes before triggering the close event. Fixes #4207 - Dialog close event occurs too early with hide effect. Modified: trunk/ui/ui.dialog.js ============================================================================== --- trunk/ui/ui.dialog.js (original) +++ trunk/ui/ui.dialog.js Sat Feb 21 09:02:52 2009 @@ -154,19
r2118 - trunk/ui
Author: rdworth Date: Sat Feb 21 03:40:05 2009 New Revision: 2118 Modified: trunk/ui/ui.slider.js Log: Slider: Fixed min and max range sliders to add ui-slider-range-min or ui-slider-range-max class and not set corresponding left/right/top/bottom inline, only width/height (fixes #4182 - slider min/max classes aren't being added to range div) (fixes #3850 - Slider Range With Fixed Max Demo Bug in Opera) Modified: trunk/ui/ui.slider.js ==============================================================================
jQuery UI 1.6rc6 - Selectables default behaviour
Using the demo at http://jqueryui.com/demos/selectable/#display-grid as an example, I have a question regarding the behaviour of selectables. When I click on (or drag over) an unselected element it is selected. So I would expect that doing the same action on a selected element it will be deselected. In this way, if I select multiple elements and realise that the one in the middle is not what I wanted I can click on it and deselect it. Likewise, if I have a large list of items and I want to select
r2117 - in trunk: external/jsdiff tests tests/static/draggable tests/static/droppable tests/stati...
Author: rdworth Date: Sat Feb 21 03:34:08 2009 New Revision: 2117 Added: trunk/external/jsdiff/ trunk/external/jsdiff/jsdiff.js (contents, props changed) trunk/tests/slider.html (contents, props changed) trunk/tests/tests.css (contents, props changed) trunk/tests/tests.js (contents, props changed) trunk/tests/visual/slider/default_vertical.html (contents, props changed) Modified: trunk/tests/index.html trunk/tests/static/draggable/default.html trunk/tests/static/droppable/default.html trunk/tests/static/slider/default.html
Multi-Calendar I18N Support in UI Datepicker
I had mistakenly posted this to to main jQuery group and am reposting here: Original Message: I am planning on using the ui datepicker component in an app with multi-calendar requirements. This includes the datepicker UI component, meaning that the datepicker should be able to render with a completely different calendar (such as Julian or Coptic) as well as the current localized text support. If possible, I'd like to implement this using the current jquery datepicker UI widget but thought I'd first
animateClass-Features
Hi, At the last weekend i played around with the animateClass-methods and posted some bugs and feature-requests: http://dev.jqueryui.com/bugs/ticket/3928, http://dev.jqueryui.com/bugs/ticket/3939, http://dev.jqueryui.com/bugs/ticket/3938, http://dev.jqueryui.com/bugs/ticket/3937 I also tryed to provide a quick and dirty implementation of the suggested features. I only wanted to let you know, that i have cleaned up the code (and fixed a global var introduced by me). You can find the code and a demo
r2017 - trunk/demos/sortable
Author: bohdan.ganicky Date: Thu Feb 5 11:39:38 2009 New Revision: 2017 Added: trunk/demos/sortable/connect-lists-through-tabs.html Modified: trunk/demos/sortable/index.html Log: demos/sortable/connect-lists-through-tabs: new demo created as a reaction to a certain discussion in the jquery ui google group Added: trunk/demos/sortable/connect-lists-through-tabs.html ============================================================================== --- (empty file) +++ trunk/demos/sortable/connect-lists-through-tabs.html Thu
ui.tabs don't work if dynamically added in IE7
Hi guys, today I found a very strange behavior of ui.tabs while using IE7. I'm dynamically insert parts of web page loaded using AJAX, and I wasn't able to get tabs working correctly (even though all other browser where perfectly OK). And than I saw it. When dynamically adding markup to page IE handles specifically <a href="#..."> tags. It adds location.href before the '#' hash sign. So all tabs do look like <a href="http://my.page.com/ #..."> once inserted into the page and everything gets messed
r2116 - trunk/themes/base
Author: scottjehl Date: Fri Feb 20 13:35:01 2009 New Revision: 2116 Modified: trunk/themes/base/ui.theme.css Log: added rules to make sure font color works on links within error and highlight containers Modified: trunk/themes/base/ui.theme.css ============================================================================== --- trunk/themes/base/ui.theme.css (original) +++ trunk/themes/base/ui.theme.css Fri Feb 20 13:35:01 2009 @@ -27,7 +27,9 @@ /* Interaction Cues ----------------------------------*/
r2115 - trunk/themes/base
Author: scottjehl Date: Fri Feb 20 13:32:48 2009 New Revision: 2115 Modified: trunk/themes/base/ui.theme.css Log: switched order of ui-widget-content and ui-widget-header styles - header styles need to apply completely when header is a child of content (or not) Modified: trunk/themes/base/ui.theme.css ============================================================================== --- trunk/themes/base/ui.theme.css (original) +++ trunk/themes/base/ui.theme.css Fri Feb 20 13:32:48 2009 @@ -10,10
r2114 - trunk/demos/tabs
Author: scottjehl Date: Fri Feb 20 10:38:21 2009 New Revision: 2114 Modified: trunk/demos/tabs/sortable.html Log: restrict sort to x axis Modified: trunk/demos/tabs/sortable.html ============================================================================== --- trunk/demos/tabs/sortable.html (original) +++ trunk/demos/tabs/sortable.html Fri Feb 20 10:38:21 2009 @@ -10,7 +10,7 @@ <link type="text/css" href="../demos.css" rel="stylesheet" /> <script type="text/javascript"> $(function()
New 1.6 and 1.7 milestones in Trac
I changed the previous Trac milestone named '1.6' to '1.7', and created a new one for 1.6. From here forward: Milestone 1.7 should be for any planned fixes on top of 1.6rc6 (compatible with jQuery 1.3) Milestone 1.6 should be for any planned fixes on top of 1.6rc2 (compatible with jQuery 1.2.6) See <a href="http://blog.jquery.com/2009/02/12/jquery-ui-17-is-the-new-16/">http://blog.jquery.com/2009/02/12/jquery-ui-17-is-the-new-16/</a> <a href="http://groups.google.com/group/jquery-ui/browse_thread/thread/2fe64d53d116e49a">http://groups.google.com/group/jquery-ui/browse_thread/thread/2fe64d53d116e49a</a>
r2113 - in trunk: . demos demos/accordion demos/datepicker demos/dialog demos/draggable demos/dro...
Author: rdworth Date: Fri Feb 20 03:40:25 2009 New Revision: 2113 Added: trunk/jquery-1.3.2.js (contents, props changed) Removed: trunk/jquery-1.3.1.js Modified: trunk/demos/accordion/collapsible.html trunk/demos/accordion/custom-icons.html trunk/demos/accordion/default.html trunk/demos/accordion/fillspace.html trunk/demos/accordion/mouseover.html trunk/demos/accordion/no-auto-height.html trunk/demos/datepicker/alt-field.html trunk/demos/datepicker/buttonbar.html trunk/demos/datepicker/date-formats.html
Sortable trunk r2112 revert misbehaving on Safari 3 with patch
I discovered that using jQuery 1.3.1/jQueryUI 1.6rc6 on Safari 3.0.6 and Webkit nightly build <span class="Apple-style-span" style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; ">r41071 have bad behavior with revert: true and axix: y/x. If you load my test.html in Safari you will notice that when you drag and release the helper moves all the way to left: 0 before animating back into place.</span><div> <span class="Apple-style-span"
Jquery Calender Control throws error if textbox is disabled
Hi,I am using jquery calender control.In my case the input textbox is disables.so when I click on the calender icon,I am getting a javascript error message.It's working fine if the textbox is enabled. But I can't enable the textbox as the user can't enter the date into textbox directly,He has to go through this calender if he wants to pick the date. Please help me.
r2112 - in branches/dev/effects: . build demos dev-animateClass external tests themes ui
Author: a.farkas.pm Date: Thu Feb 19 13:12:08 2009 New Revision: 2112 Added: branches/dev/effects/ branches/dev/effects/AUTHORS.txt - copied unchanged from r2109, /trunk/AUTHORS.txt branches/dev/effects/GPL-LICENSE.txt - copied unchanged from r2109, /trunk/GPL-LICENSE.txt branches/dev/effects/MIT-LICENSE.txt - copied unchanged from r2109, /trunk/MIT-LICENSE.txt branches/dev/effects/build/ - copied from r2109, /trunk/build/ branches/dev/effects/demos/ - copied from r2109, /trunk/demos/ branches/dev/effects/dev-animateClass/
r2111 - in trunk: tests/unit/tabs ui
Author: klaus.hartl Date: Thu Feb 19 12:19:13 2009 New Revision: 2111 Modified: trunk/tests/unit/tabs/tabs_methods.js trunk/ui/ui.tabs.js Log: Tabs: normalization of href attribute required in IE, fixes #4134 Modified: trunk/tests/unit/tabs/tabs_methods.js ============================================================================== --- trunk/tests/unit/tabs/tabs_methods.js (original) +++ trunk/tests/unit/tabs/tabs_methods.js Thu Feb 19 12:19:13 2009 @@ -43,7 +43,7 @@ }); test('add', function()
Download Builder Docs
I've created an empty page for how to script downloads through the download builder ( <a href="http://wiki.jqueryui.com/Download-builder">http://wiki.jqueryui.com/Download-builder</a> ). This should detail how a user can request a custom download without pulling up the download builder in a browser. Please add notes to this page if you have ideas of how this should work (feel free to completely ignore the currently implementation if that's not how you think it should work). Thanks.
r2110 - trunk/themes/base
Author: scottjehl Date: Thu Feb 19 11:42:30 2009 New Revision: 2110 Modified: trunk/themes/base/ui.tabs.css Log: changed bottom padding on selected tab from .1em to 1px. This is supposed to simply wipe the 1px border. Ems aren't needed Modified: trunk/themes/base/ui.tabs.css ============================================================================== --- trunk/themes/base/ui.tabs.css (original) +++ trunk/themes/base/ui.tabs.css Thu Feb 19 11:42:30 2009 @@ -4,7 +4,7 @@ .ui-tabs .ui-tabs-nav
How to use multiple jQuery UI Themes on one page
The jQuery UI Download Builder now allows you to scope your CSS. This article shows you how to use it. http://www.filamentgroup.com/lab/using_multiple_jquery_ui_themes_on_a_single_page/
dialog overlay slowness
All the extra work the overlay for modal dialogs does is hurting me badly: testers are reporting that the site is incredibly slow, and especially with webkit nightlies it is impossible to use a form inside a panel. Personally I consider preventing the user from navigating to something underneath the overlay an edge-case that I might not care about, especially if that means choosing between decent and dreadful performance. What are the current plans for dealing with this issue? Wichert. -- Wichert
r2109 - trunk/ui
Author: paul.bakaus Date: Thu Feb 19 05:25:02 2009 New Revision: 2109 Modified: trunk/ui/effects.core.js Log: effects core: the second argument passed to effect methods wasn't checked for being a callback function (fixes #4181 - Effects methods don't allow callback as the second parameter) Modified: trunk/ui/effects.core.js ============================================================================== --- trunk/ui/effects.core.js (original) +++ trunk/ui/effects.core.js Thu Feb 19 05:25:02 2009
r2108 - in trunk: demos demos/datepicker ui/i18n
Author: kbwood.au Date: Thu Feb 19 02:30:43 2009 New Revision: 2108 Added: trunk/ui/i18n/ui.datepicker-sr-SR.js trunk/ui/i18n/ui.datepicker-sr.js Modified: trunk/demos/datepicker/localization.html trunk/demos/index.html Log: Fixed #4156 Serbian localizations Modified: trunk/demos/datepicker/localization.html ============================================================================== --- trunk/demos/datepicker/localization.html (original) +++ trunk/demos/datepicker/localization.html Thu Feb
Next Page