Possible Draggable Bug
Hi, We have detected a buggy behavior of draggable.js on our website with Firefox. After digging a bit, we found that it might be related to the "overflow-y: scroll" css property we use on the HTML element to permanently show the vertical scrollbar. Is it a jqueryui bug or a firefox bug ? I've put online a modified copy of the draggable sample page to show the buggy behavior : http://www.mably.com/dev/draggable.html Just reduce the size of your Firefox browser window to activate the vertical scrollbar,
r2216 - in branches/dev/autocomplete: themes/base ui
Author: joern.zaefferer Date: Sat Mar 7 02:48:32 2009 New Revision: 2216 Modified: branches/dev/autocomplete/themes/base/ui.autocomplete.css branches/dev/autocomplete/ui/ui.autocomplete.js Log: autocomplete: applied some basic UI CSS Framework classes Modified: branches/dev/autocomplete/themes/base/ui.autocomplete.css ============================================================================== --- branches/dev/autocomplete/themes/base/ui.autocomplete.css (original) +++ branches/dev/autocomplete/themes/base/ui.autocomplete.css Sat
r2215 - branches/dev/autocomplete/demos/autocomplete
Author: joern.zaefferer Date: Sat Mar 7 02:38:12 2009 New Revision: 2215 Modified: branches/dev/autocomplete/demos/autocomplete/default.html Log: updated dev/autocomplete to match trunk structure; update to CSS framework and latest jQuery and UI core; added default and replace-select demo Modified: branches/dev/autocomplete/demos/autocomplete/default.html ============================================================================== --- branches/dev/autocomplete/demos/autocomplete/default.html (original)
r2214 - branches/dev/autocomplete/demos/autocomplete
Author: joern.zaefferer Date: Sat Mar 7 02:31:23 2009 New Revision: 2214 Modified: branches/dev/autocomplete/demos/autocomplete/replace-select.html Log: updated dev/autocomplete to match trunk structure; update to CSS framework and latest jQuery and UI core; added default and replace-select demo Modified: branches/dev/autocomplete/demos/autocomplete/replace-select.html ============================================================================== --- branches/dev/autocomplete/demos/autocomplete/replace-select.html
r2213 - branches/dev/autocomplete
Author: joern.zaefferer Date: Sat Mar 7 02:28:10 2009 New Revision: 2213 Modified: branches/dev/autocomplete/ (props changed) Log: updated dev/autocomplete to match trunk structure; update to CSS framework and latest jQuery and UI core; added default and replace-select demo
r2212 - branches/dev/autocomplete/release
Author: joern.zaefferer Date: Sat Mar 7 02:23:56 2009 New Revision: 2212 Removed: branches/dev/autocomplete/release/ Log: updated dev/autocomplete to match trunk structure; update to CSS framework and latest jQuery and UI core; added default and replace-select demo
r2211 - in branches/dev/autocomplete: . demos demos/autocomplete demos/functional demos/images de...
Author: joern.zaefferer Date: Sat Mar 7 02:22:13 2009 New Revision: 2211 Added: branches/dev/autocomplete/demos/autocomplete/ branches/dev/autocomplete/demos/autocomplete/default.html (contents, props changed) branches/dev/autocomplete/demos/autocomplete/index.html (contents, props changed) branches/dev/autocomplete/demos/autocomplete/replace-select.html (contents, props changed) branches/dev/autocomplete/demos/demos.css branches/dev/autocomplete/demos/images/ branches/dev/autocomplete/demos/images/calendar.gif
r2210 - trunk/ui/i18n
Author: cloudream@gmail.com Date: Fri Mar 6 20:59:57 2009 New Revision: 2210 Modified: trunk/ui/i18n/ui.datepicker-ro.js Log: Datepicker: Update Romanian Localization, thanks Ionut G. Stan Modified: trunk/ui/i18n/ui.datepicker-ro.js ============================================================================== --- trunk/ui/i18n/ui.datepicker-ro.js (original) +++ trunk/ui/i18n/ui.datepicker-ro.js Fri Mar 6 20:59:57 2009 @@ -1,19 +1,22 @@ -/* Romanian initialisation for the jQuery UI date picker
Romanian localization of datepicker
Hello guys, I'm using jQueryUI 1.6rc6 for my latest project, more exactly the datepicker widget. The application should be localized for Romanian but I saw the Romanian localization had some flows. It took a couple of seconds to fix them so I'm sending you the new version. Maybe you'll include it in your next release. If there's a particular workflow for approval please let me know. I know most of you, if not all, don't know Romanian so I would expect to be some steps to follow for acceptance. The
Possible problem with UI blog
Hi There might be a problem with the new jQuery UI blog. I tried to post a comment on the release of 1.7 but the comment didn't show up. I currently see 6 comments in the post, yet the URL resulting from sending my comment suggested there were 37 comments...
Minor inefficiencies in Droppable
These aren't a big deal, but they'll save a few bytes. In Droppable _init, there's the line var o = this.options, accept = o.accept; but o is never used and accept is only used once; everywhere else it's this.options.accept. Change line 23 from this.options.accept = this.options.accept && $.isFunction (this.options.accept) ? this.options.accept : function(d) { to o.accept = $.isFunction(accept) ? accept : function(d) { ($.isFunction() correctly returns false for a false-y argument, so the "accept
r2209 - trunk/ui
Author: cloudream@gmail.com Date: Thu Mar 5 10:18:49 2009 New Revision: 2209 Modified: trunk/ui/ui.droppable.js Log: Droppable: short _init code. Modified: trunk/ui/ui.droppable.js ============================================================================== --- trunk/ui/ui.droppable.js (original) +++ trunk/ui/ui.droppable.js Thu Mar 5 10:18:49 2009 @@ -20,7 +20,7 @@ var o = this.options, accept = o.accept; this.isover = 0; this.isout = 1; - this.options.accept = this.options.accept
Bug in Droppable
$(...).droppable('option', 'accept', selector) gives an error ("accept" not defined). The bug is line 54 in _setData, it reads: return d.is(accept); It should be: return d.is(value); (It looks like the code was copy/pasted from _init without testing) I filed ticket <a href="http://dev.jqueryui.com/ticket/4278">#4278</a> Danny
r2208 - trunk/ui
Author: cloudream@gmail.com Date: Thu Mar 5 07:18:07 2009 New Revision: 2208 Modified: trunk/ui/ui.droppable.js Log: Droppable: droppable('option', 'accept', selector) fails. fixes #4278 Modified: trunk/ui/ui.droppable.js ============================================================================== --- trunk/ui/ui.droppable.js (original) +++ trunk/ui/ui.droppable.js Thu Mar 5 07:18:07 2009 @@ -51,7 +51,7 @@ if(key == 'accept') { this.options.accept = value && $.isFunction(value)
Seperate file download
Hi guys, as of now, it's too difficult to find the possibility to download jQuery UI in seperate files. We seriously need links to the developer package on the download builder page (and gettin started guides). Can anyone tackle this asap? Thanks, Paul<br clear="all"> -- Paul Bakaus UI Architect -- <a href="http://paulbakaus.com">http://paulbakaus.com</a> <a href="http://www.linkedin.com/in/paulbakaus">http://www.linkedin.com/in/paulbakaus</a>
r2207 - trunk/tests/visual/dialog
Author: rdworth Date: Thu Mar 5 06:30:56 2009 New Revision: 2207 Modified: trunk/tests/visual/dialog/dialog_on_page_with_large_dom.html Log: dialog: visual test. switched jQuery 1.3.1 to 1.3.2 (file was added after switch was made) Modified: trunk/tests/visual/dialog/dialog_on_page_with_large_dom.html ============================================================================== --- trunk/tests/visual/dialog/dialog_on_page_with_large_dom.html (original) +++ trunk/tests/visual/dialog/dialog_on_page_with_large_dom.html Thu
r2206 - trunk/demos
Author: fg.maggie Date: Wed Mar 4 15:15:43 2009 New Revision: 2206 Modified: trunk/demos/index.html Log: added left nav links to Getting Started and Upgrade Guide Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Wed Mar 4 15:15:43 2009 @@ -260,10 +260,12 @@ <dd><a href="animate/index.html">Animate</a></dd> <dd><a href="effect/index.html">Effect</a></dd>
Serializing / toArray nested sortables sometimes looses an item on connectWith drag
I have sortables-A containing sortables-B; all sortables-B lists are connected with other Sortables-B lists - and all sortables-A lists are connected with other Sortables-A lists. When I drag a sortable-A item to a connected sortable-A list, the update event fires .toArray ( I've also tested .serialize ) for AJAX communication with a database to remember the order. Intermittently, the 'serialized' receiving list is inaccurate. I.E. If I have sortA [ j, k, l, m ] and sortA' [ r, s, t, u ], and I drag
Accordion autoHeight in IE
Hi, I'm trying to set the autoHeight value in Internet Explorer 7.0 to false, but it seems, it doesn't work how expected. My code - doesn't work in IE 7, works in Firefox 3, Chrome 1 and Safari 3 $("#accordion").accordion({ header: "h3", autoHeight: false }); The "true" value works correctly. Bye.
r2199 - trunk/demos/slider
Author: joern.zaefferer Date: Tue Mar 3 13:04:30 2009 New Revision: 2199 Added: trunk/demos/slider/hotelrooms.html (contents, props changed) Log: slider demo: added hotelrooms example, showing how to enhance an existing select with a slider - I think we need way more of these, showing off our commitment to progressive enhancement Added: trunk/demos/slider/hotelrooms.html ============================================================================== --- (empty file) +++ trunk/demos/slider/hotelrooms.html Tue
r2205 - in tags/1.7: demos/datepicker/images demos/images docs external/bgiframe external/bgifram...
Author: rdworth Date: Wed Mar 4 03:49:52 2009 New Revision: 2205 Modified: tags/1.7/demos/datepicker/images/calendar.gif (props changed) tags/1.7/demos/images/calendar.gif (props changed) tags/1.7/demos/images/demo-config-on-tile.gif (props changed) tags/1.7/demos/images/demo-config-on.gif (props changed) tags/1.7/demos/images/demo-spindown-closed.gif (props changed) tags/1.7/demos/images/demo-spindown-open.gif (props changed) tags/1.7/demos/images/icon-docs-info.gif (props changed) tags/1.7/demos/images/pbar-ani.gif
r2204 - in tags/1.7/themes: black-tie black-tie/images blitzer blitzer/images cupertino cupertino...
Author: rdworth Date: Wed Mar 4 03:29:19 2009 New Revision: 2204 Added: tags/1.7/themes/black-tie/ tags/1.7/themes/black-tie/images/ tags/1.7/themes/black-tie/images/ui-bg_diagonals-thick_8_333333_40x40.png (contents, props changed) tags/1.7/themes/black-tie/images/ui-bg_flat_65_ffffff_40x100.png (contents, props changed) tags/1.7/themes/black-tie/images/ui-bg_glass_40_111111_1x400.png (contents, props changed) tags/1.7/themes/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png (contents, props changed)
r2203 - trunk/demos
Author: rdworth Date: Wed Mar 4 00:17:49 2009 New Revision: 2203 Modified: trunk/demos/index.html Log: demos index: added missing </a> Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Wed Mar 4 00:17:49 2009 @@ -258,7 +258,7 @@ <dd><a href="hide/index.html">Hide</a></dd> <dd><a href="toggle/index.html">Toggle</a></dd> <dd><a
r2202 - trunk/demos
Author: cloudream@gmail.com Date: Tue Mar 3 23:57:45 2009 New Revision: 2202 Modified: trunk/demos/index.html Log: demo menu: re-order links Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Tue Mar 3 23:57:45 2009 @@ -260,15 +260,15 @@ <dd><a href="animate/index.html">Animate</a></dd> <dd><a href="effect/index.html">Effect</dd>
r2201 - trunk/demos
Author: cloudream@gmail.com Date: Tue Mar 3 23:56:49 2009 New Revision: 2201 Modified: trunk/demos/index.html Log: demo menu: re-order links Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Tue Mar 3 23:56:49 2009 @@ -252,23 +252,23 @@ <dt>Effects</dt> <dd><a href="addClass/index.html">Add Class</a></dd> <dd><a
New Filament Article: Image-free CSS Tooltip Pointers - A Use for Polygonal CSS?
Image-free CSS Tooltip Pointers - A Use for Polygonal CSS? Leave a comment - let us know what you think! http://www.filamentgroup.com/lab/image_free_css_tooltip_pointers_a_use_for_polygonal_css/
r2200 - trunk/demos/slider
Author: joern.zaefferer Date: Tue Mar 3 14:50:17 2009 New Revision: 2200 Modified: trunk/demos/slider/index.html Log: slider demo: added hotelrooms example, showing how to enhance an existing select with a slider - I think we need way more of these, showing off our commitment to progressive enhancement Modified: trunk/demos/slider/index.html ============================================================================== --- trunk/demos/slider/index.html (original) +++ trunk/demos/slider/index.html Tue
API Documentation, Missing :select
I noticed the "Forms" section under "API/1.3/Selectors" was missing ":select". I spent some time using Google to find if somebody was using it or if it exists. Also, I decided to try it myself and ":select" works, I think! Please add the missing selector API to jQuery documentation, thank you! Sincerely, William Chang
r2182 - tags/1.7
Author: rdworth Date: Tue Mar 3 03:08:34 2009 New Revision: 2182 Added: tags/1.7/ - copied from r2181, /trunk/ Log: tagged 1.7 as of trunk rev2181
r2194 - in tags/1.7/external: . bgiframe bgiframe/docs bgiframe/test cookie jsdiff qunit simulate
Author: rdworth Date: Tue Mar 3 05:36:33 2009 New Revision: 2194 Added: tags/1.7/external/ tags/1.7/external/bgiframe/ tags/1.7/external/bgiframe/ChangeLog.txt tags/1.7/external/bgiframe/META.json tags/1.7/external/bgiframe/docs/ tags/1.7/external/bgiframe/docs/index.html tags/1.7/external/bgiframe/jquery.bgiframe.js tags/1.7/external/bgiframe/jquery.bgiframe.min.js tags/1.7/external/bgiframe/jquery.bgiframe.pack.js tags/1.7/external/bgiframe/test/ tags/1.7/external/bgiframe/test/index.html tags/1.7/external/cookie/
r2197 - tags/testing
Author: rdworth Date: Tue Mar 3 05:41:58 2009 New Revision: 2197 Added: tags/testing/ - copied from r2194, /tags/1.7/ Log: tagged 1.7 as testing preview release
r2192 - in tags/1.7: docs themes/base
Author: rdworth Date: Tue Mar 3 05:31:19 2009 New Revision: 2192 Added: tags/1.7/themes/base/jquery-ui.css Modified: tags/1.7/docs/addClass.html Log: tags/1.7: added/updated files from zip Modified: tags/1.7/docs/addClass.html ============================================================================== --- tags/1.7/docs/addClass.html (original) +++ tags/1.7/docs/addClass.html Tue Mar 3 05:31:19 2009 @@ -56,10 +56,10 @@ </tbody></table></div> </div></div> <!-- -Pre-expand include size: 11957
r2195 - in tags: latest testing
Author: rdworth Date: Tue Mar 3 05:38:12 2009 New Revision: 2195 Removed: tags/latest/ tags/testing/ Log: removed tags/latest and tags/testing for update
r2196 - tags/latest
Author: rdworth Date: Tue Mar 3 05:38:59 2009 New Revision: 2196 Added: tags/latest/ - copied from r2194, /tags/1.7/ Log: tagged 1.7 as latest stable release
r2190 - tags/1.7/build
Author: rdworth Date: Tue Mar 3 05:25:17 2009 New Revision: 2190 Modified: tags/1.7/build/build.xml Log: fixed build script to create concatenated base theme file: jquery-ui.css Modified: tags/1.7/build/build.xml ============================================================================== --- tags/1.7/build/build.xml (original) +++ tags/1.7/build/build.xml Tue Mar 3 05:25:17 2009 @@ -25,6 +25,7 @@ <property name="build.dir" value="build" /> <property name="ui.dir" value="../" /> <property
r2198 - tags/legacy
Author: rdworth Date: Tue Mar 3 05:42:57 2009 New Revision: 2198 Added: tags/legacy/ - copied from r1993, /tags/1.5.3/ Log: tagged 1.5.3 as legacy
r2188 - trunk/build
Author: rdworth Date: Tue Mar 3 05:12:35 2009 New Revision: 2188 Modified: trunk/build/build.xml Log: merged r2187 to trunk Modified: trunk/build/build.xml ============================================================================== --- trunk/build/build.xml (original) +++ trunk/build/build.xml Tue Mar 3 05:12:35 2009 @@ -19,7 +19,7 @@ <property file="ant.properties" /> <loadfile failonerror="no" srcFile="../version.txt" property="release.version" /> - <property name="release.filename"
r2189 - in tags/1.7: docs ui ui/i18n ui/minified ui/minified/i18n
Author: rdworth Date: Tue Mar 3 05:18:07 2009 New Revision: 2189 Added: tags/1.7/docs/ tags/1.7/docs/accordion.html tags/1.7/docs/addClass.html tags/1.7/docs/animate.html tags/1.7/docs/datepicker.html tags/1.7/docs/dialog.html tags/1.7/docs/draggable.html tags/1.7/docs/droppable.html tags/1.7/docs/effect.html tags/1.7/docs/hide.html tags/1.7/docs/progressbar.html tags/1.7/docs/removeClass.html tags/1.7/docs/resizable.html tags/1.7/docs/selectable.html tags/1.7/docs/show.html tags/1.7/docs/slider.html
r2187 - tags/1.7/build
Author: rdworth Date: Tue Mar 3 05:11:48 2009 New Revision: 2187 Modified: tags/1.7/build/build.xml Log: fixed build script to grab docs from correct location and updating naming of combined files and zip Modified: tags/1.7/build/build.xml ============================================================================== --- tags/1.7/build/build.xml (original) +++ tags/1.7/build/build.xml Tue Mar 3 05:11:48 2009 @@ -19,7 +19,7 @@ <property file="ant.properties" /> <loadfile failonerror="no"
r2193 - tags/1.7/external
Author: rdworth Date: Tue Mar 3 05:35:40 2009 New Revision: 2193 Removed: tags/1.7/external/ Log: removed external folder for export
Next Page