Ticket #4438
First of all, I would like to thank you guys for putting in so much time and effort on this amazing framework. I just filled <a href="http://dev.jqueryui.com/ticket/4438">Ticket #4438</a>, about a bug in the position of the helper in the selectable, when body has position: relative and an offset relative to the document (margin, padding, etc.) What I forgot to mention is that the same problem affects ui.dialog too, in the same conditions, and probably is present other places in the framework. When
r2439 - watermark prototype
Author: joern.zaefferer Date: Tue Apr 7 07:02:56 2009 New Revision: 2439 Modified: branches/dev/watermark/themes/base/ui.watermark.css (props changed) Log: watermark prototype
Watermark spec
Hi, there's been a lot of discussion on the Watermark wiki page. I'd like to get some feedback on my last comment: http://jqueryui.pbwiki.com/Watermark#comment1239033621 How about... Use the placeholder-option when specified, otherwise use the placeholder-attribute, if available, otherwise do nothing. The placeholder-option can be plain text, or a callback. The callback is called for each element when displaying the watermark and can return the title-attribute, or get the label, or whatever you want.
r2438 - watermark prototype
Author: joern.zaefferer Date: Tue Apr 7 06:49:57 2009 New Revision: 2438 Added: branches/dev/watermark/demos/watermark/ branches/dev/watermark/demos/watermark/default.html (contents, props changed) branches/dev/watermark/demos/watermark/from-label.html (contents, props changed) branches/dev/watermark/demos/watermark/index.html (contents, props changed) branches/dev/watermark/themes/base/ui.watermark.css branches/dev/watermark/ui/ui.watermark.js Modified: branches/dev/watermark/demos/index.html branches/dev/watermark/themes/base/ui.base.css
r2437 - creating watermark branche from trunk
Author: joern.zaefferer Date: Tue Apr 7 01:19:46 2009 New Revision: 2437 Added: branches/dev/watermark/ - copied from r2436, /trunk/ Log: creating watermark branche from trunk
Documentation typo
I've just notice a slight typo in the docs for 'sortable'... for 'placeholder' option, the value is given as '.ui-state-highlight' - should be 'ui-state-highlight' - no dot.
r2436 - improvements to the style-filter + fixed IE8 bug
Author: a.farkas.pm Date: Fri Apr 3 15:37:12 2009 New Revision: 2436 Modified: branches/dev/effects/ui/effects.core.js Log: improvements to the style-filter + fixed IE8 bug Modified: branches/dev/effects/ui/effects.core.js ============================================================================== --- branches/dev/effects/ui/effects.core.js (original) +++ branches/dev/effects/ui/effects.core.js Fri Apr 3 15:37:12 2009 @@ -171,7 +171,7 @@ } } else { //normal Browser +
Jquery-ui build error
Hi, I did a check out of the current jQuery-ui version using "svn co http://jquery-ui.googlecode.com/svn/trunk". I am using ant for the build purpose, but the build fails in the middle throwing up the following error message. BUILD FAILED /root/jquery/ui/trunk/build/build.xml:58: The following error occurred while executing this line: /root/jquery/ui/trunk/build/build.xml:62: File /root/jquery/ui/trunk/ build/dist/jquery.ui-1.7pre/headers/${target}.js does not exist. Please let me know if something
jQuery UI DotNetNuke integration
Hi all! I recently started work on a jQuery UI DotNetNuke integration, to make it easier for module developers like me to use jQuery UI from an ASP.NET context. So far I have rudimentary support for Tabs and DatePicker, including theme support, since those were the components I required first. I was thinking of making the code available publically, perhaps on CodePlex, as this is one of the preferred ASP.NET project platforms. Can anyone give me guidance on whether or not this is allowed, and how
Setting a slider's value without triggering the change event
Hey folks, pretty nasty issue. Every time I've actually worked with our new slider implementation, I had to manually fork it. The reason is that it's currently not possible (imo) to set the value of a slider without triggering a change event. Here's the actual issue, as an example I'm using a video playback demo: 1. If you initialize a slider, you most often do it like that: $('#slider').slider({ change: function() { //Seek to current value in video } }); 2. And of course, you also
r2435 - starting points for grid markup / style. Very early stages still.
Author: scottjehl Date: Thu Apr 2 11:38:30 2009 New Revision: 2435 Added: branches/dev/grid/tests/static/grid/ branches/dev/grid/tests/static/grid/default.html (contents, props changed) branches/dev/grid/tests/static/static.css (contents, props changed) branches/dev/grid/tests/static/static.js (contents, props changed) Log: starting points for grid markup / style. Very early stages still. Added: branches/dev/grid/tests/static/grid/default.html ==============================================================================
Add .hoverClass() and .focusClass()
With the new CSS framework, there will be the need to add hover and focus classes to several elements. In many cases, toggling the class will be the only logic for hovering or focusing an element. This will require code like the following: $(el).hover( function() { $(this).addClass('ui-state-hover'); }, function() { $(this).removeClass('ui-state-hover'); } ); Rather than duplicating this code over and over, I'd like to propose adding .hoverClass() and .focusClass()
r2434 - Removed getter properties.
Author: scott.gonzalez Date: Thu Apr 2 06:10:16 2009 New Revision: 2434 Modified: branches/dev/widget-factory/ui/ui.slider.js branches/dev/widget-factory/ui/ui.sortable.js branches/dev/widget-factory/ui/ui.tabs.js Log: Removed getter properties. Modified: branches/dev/widget-factory/ui/ui.slider.js ============================================================================== --- branches/dev/widget-factory/ui/ui.slider.js (original) +++ branches/dev/widget-factory/ui/ui.slider.js Thu Apr 2
Proposed tickets for 1.7.2
If you fix a ticket in the trunk for 1.8 (see 1.8 Closed report: <a href="http://dev.jqueryui.com/report/20">http://dev.jqueryui.com/report/20</a>) and feel it should be considered for inclusion in 1.7.2, please add it to this list: <a href="http://wiki.jqueryui.com/Proposed-tickets-for-172">http://wiki.jqueryui.com/Proposed-tickets-for-172</a> The 1.7.2 release will be finalized tomorrow (Wed.) night. Thanks. - Richard
r2431 - Dialog: Fixed the case where you open two modal dialogs and then close the top dialog and...
Author: scott.gonzalez Date: Wed Apr 1 19:00:45 2009 New Revision: 2431 Modified: trunk/ui/ui.dialog.js Log: Dialog: Fixed the case where you open two modal dialogs and then close the top dialog and inputs in the first dialog were no longer usable - Fixes #4309. Modified: trunk/ui/ui.dialog.js ============================================================================== --- trunk/ui/ui.dialog.js (original) +++ trunk/ui/ui.dialog.js Wed Apr 1 19:00:45 2009 @@ -172,6 +172,17 @@ $.ui.dialog.overlay.resize();
r2432 - Added demo for animated dialog.
Author: scott.gonzalez Date: Wed Apr 1 19:37:25 2009 New Revision: 2432 Added: trunk/demos/dialog/animated.html Modified: trunk/demos/dialog/index.html Log: Added demo for animated dialog. Added: trunk/demos/dialog/animated.html ============================================================================== --- (empty file) +++ trunk/demos/dialog/animated.html Wed Apr 1 19:37:25 2009 @@ -0,0 +1,53 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Dialog - Animation</title> + <link
r2433 - SVN props.
Author: scott.gonzalez Date: Wed Apr 1 19:38:57 2009 New Revision: 2433 Modified: trunk/demos/dialog/animated.html (props changed) Log: SVN props.
r2430 - fixed #4391 - ui-state-hover, ui-state-active and disabled sliders
Author: rdworth Date: Wed Apr 1 17:10:52 2009 New Revision: 2430 Modified: trunk/ui/ui.slider.js Log: fixed #4391 - ui-state-hover, ui-state-active and disabled sliders Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original) +++ trunk/ui/ui.slider.js Wed Apr 1 17:10:52 2009 @@ -77,10 +77,26 @@ this.handle = this.handles.eq(0); this.handles.add(this.range).filter("a") - .click(function(event)
r2429 - added test page for #4391 - ui-state-hover, ui-state-active and disabled sliders
Author: rdworth Date: Wed Apr 1 17:08:15 2009 New Revision: 2429 Added: trunk/tests/visual/slider/slider_method_disable.html (contents, props changed) Log: added test page for #4391 - ui-state-hover, ui-state-active and disabled sliders Added: trunk/tests/visual/slider/slider_method_disable.html ============================================================================== --- (empty file) +++ trunk/tests/visual/slider/slider_method_disable.html Wed Apr 1 17:08:15 2009 @@ -0,0 +1,44 @@ +<!doctype
r2428 - renamed file
Author: scottjehl Date: Wed Apr 1 14:52:07 2009 New Revision: 2428 Added: branches/dev/autocomplete/tests/static/autocomplete/autocomplete.html (contents, props changed) Removed: branches/dev/autocomplete/tests/static/autocomplete/default.html Log: renamed file Added: branches/dev/autocomplete/tests/static/autocomplete/autocomplete.html ============================================================================== --- (empty file) +++ branches/dev/autocomplete/tests/static/autocomplete/autocomplete.html
Help us design upcoming jQuery UI plugins on the planning wiki
Hi all - We just finished analyzing the team's votes for our priorities for the next few months and have updated the wiki with a new table that outlines the items we want to focus on. http://wiki.jqueryui.com/FrontPage Please help us by going to these pages and start filling in sections 1-3 (description, design ideas, functional specs) -- don't be afraid to edit pages instead of just commenting. In order to move ahead productively, we'd like to ask people to get their input logged in the next 2 weeks
r2427 - added aria-owns attr to connect input to menu, but not sure if this is to spec
Author: scottjehl Date: Wed Apr 1 13:34:27 2009 New Revision: 2427 Modified: branches/dev/autocomplete/tests/static/autocomplete/default.html Log: added aria-owns attr to connect input to menu, but not sure if this is to spec Modified: branches/dev/autocomplete/tests/static/autocomplete/default.html ============================================================================== --- branches/dev/autocomplete/tests/static/autocomplete/default.html (original) +++ branches/dev/autocomplete/tests/static/autocomplete/default.html Wed
r2426 - added autocomplete to static hovers
Author: scottjehl Date: Wed Apr 1 13:32:10 2009 New Revision: 2426 Modified: branches/dev/autocomplete/tests/static/static.js Log: added autocomplete to static hovers Modified: branches/dev/autocomplete/tests/static/static.js ============================================================================== --- branches/dev/autocomplete/tests/static/static.js (original) +++ branches/dev/autocomplete/tests/static/static.js Wed Apr 1 13:32:10 2009 @@ -2,7 +2,7 @@ */ $(function(){ //add hover
r2425 - static markup and CSS recommendation for autocomplete (contains ARIA attribute suggestion...
Author: scottjehl Date: Wed Apr 1 13:29:58 2009 New Revision: 2425 Added: branches/dev/autocomplete/tests/static/autocomplete/ branches/dev/autocomplete/tests/static/autocomplete/default.html (contents, props changed) Log: static markup and CSS recommendation for autocomplete (contains ARIA attribute suggestions as well) Added: branches/dev/autocomplete/tests/static/autocomplete/default.html ============================================================================== --- (empty file) +++ branches/dev/autocomplete/tests/static/autocomplete/default.html Wed
r2422 - Datepicker: fixed #4085 - Can not display year and month correctly in Japanese
Author: kbwood.au Date: Wed Apr 1 03:36:36 2009 New Revision: 2422 Modified: trunk/themes/base/ui.datepicker.css Log: Datepicker: fixed #4085 - Can not display year and month correctly in Japanese Modified: trunk/themes/base/ui.datepicker.css ============================================================================== --- trunk/themes/base/ui.datepicker.css (original) +++ trunk/themes/base/ui.datepicker.css Wed Apr 1 03:36:36 2009 @@ -10,11 +10,10 @@ .ui-datepicker .ui-datepicker-next-hover
r2424 - Datepicker: added Windows ticks format
Author: kbwood.au Date: Wed Apr 1 03:56:58 2009 New Revision: 2424 Modified: trunk/tests/unit/datepicker/datepicker_options.js trunk/ui/ui.datepicker.js Log: Datepicker: added Windows ticks format Modified: trunk/tests/unit/datepicker/datepicker_options.js ============================================================================== --- trunk/tests/unit/datepicker/datepicker_options.js (original) +++ trunk/tests/unit/datepicker/datepicker_options.js Wed Apr 1 03:56:58 2009 @@ -657,6 +657,10
r2420 - Datepicker: Removed remnants of range select functionality
Author: kbwood.au Date: Wed Apr 1 03:25:38 2009 New Revision: 2420 Modified: trunk/ui/ui.datepicker.js Log: Datepicker: Removed remnants of range select functionality Modified: trunk/ui/ui.datepicker.js ============================================================================== --- trunk/ui/ui.datepicker.js (original) +++ trunk/ui/ui.datepicker.js Wed Apr 1 03:25:38 2009 @@ -411,12 +411,11 @@ /* Set the dates for a jQuery selection. @param target element - the target input field
r2418 - Datepicker: fixed #4301 - option dateFormat getter does not return same value as setter
Author: kbwood.au Date: Wed Apr 1 03:11:35 2009 New Revision: 2418 Modified: trunk/tests/unit/datepicker/datepicker_options.js trunk/ui/ui.datepicker.js Log: Datepicker: fixed #4301 - option dateFormat getter does not return same value as setter Modified: trunk/tests/unit/datepicker/datepicker_options.js ============================================================================== --- trunk/tests/unit/datepicker/datepicker_options.js (original) +++ trunk/tests/unit/datepicker/datepicker_options.js Wed
r2419 - Datepicker: Corrected unit tests for structural changes and end of month
Author: kbwood.au Date: Wed Apr 1 03:15:29 2009 New Revision: 2419 Modified: trunk/tests/unit/datepicker/datepicker_core.js trunk/tests/unit/datepicker/datepicker_options.js Log: Datepicker: Corrected unit tests for structural changes and end of month Modified: trunk/tests/unit/datepicker/datepicker_core.js ============================================================================== --- trunk/tests/unit/datepicker/datepicker_core.js (original) +++ trunk/tests/unit/datepicker/datepicker_core.js Wed
r2421 - Datepicker: fixed #4085 - Can not display year and month correctly in Japanese
Author: kbwood.au Date: Wed Apr 1 03:34:16 2009 New Revision: 2421 Modified: trunk/ui/i18n/ui.datepicker-ar.js trunk/ui/i18n/ui.datepicker-bg.js trunk/ui/i18n/ui.datepicker-ca.js trunk/ui/i18n/ui.datepicker-cs.js trunk/ui/i18n/ui.datepicker-da.js trunk/ui/i18n/ui.datepicker-de.js trunk/ui/i18n/ui.datepicker-el.js trunk/ui/i18n/ui.datepicker-eo.js trunk/ui/i18n/ui.datepicker-es.js trunk/ui/i18n/ui.datepicker-fa.js trunk/ui/i18n/ui.datepicker-fi.js trunk/ui/i18n/ui.datepicker-fr.js trunk/ui/i18n/ui.datepicker-he.js
r2423 - Datepicker: fixed #4285 - Week of the Year off by one during daylight saving time
Author: kbwood.au Date: Wed Apr 1 03:41:22 2009 New Revision: 2423 Modified: trunk/ui/ui.datepicker.js Log: Datepicker: fixed #4285 - Week of the Year off by one during daylight saving time And simplified calculation Modified: trunk/ui/ui.datepicker.js ============================================================================== --- trunk/ui/ui.datepicker.js (original) +++ trunk/ui/ui.datepicker.js Wed Apr 1 03:41:22 2009 @@ -821,20 +821,13 @@ @param date Date - the date to get the week
Patch proposed for #3861 - Manually entered date do not update altField
Hi all, I am a web developer out of New York city. I have just submitted a patch for the defect #3861 for the datepicker altField which is not updated when the main field is directly modified by the user. The proposed patch update the altField on the keyUp event but only if the date typed is valid. In the patch I am also suggesting to update the datepicker, when that happens, since it seems to make sense from a user perspective. Although this is not part of the original defect. It's my first patch
r2417 - fixed style properties with multiple integers in IE (for example padding)
Author: a.farkas.pm Date: Mon Mar 30 23:49:39 2009 New Revision: 2417 Modified: branches/dev/effects/tests/visual/animateClass/index.html branches/dev/effects/ui/effects.core.js Log: fixed style properties with multiple integers in IE (for example padding) Modified: branches/dev/effects/tests/visual/animateClass/index.html ============================================================================== --- branches/dev/effects/tests/visual/animateClass/index.html (original) +++ branches/dev/effects/tests/visual/animateClass/index.html Mon
Color Animation Plugin
Hello all, I have a fix which makes color animation bug-free in IE 6+, as well as in all other supported browsers. The color plugin itself seems to have been untouched for quite a while, does it have anyone to maintain it? There are further fixes for properties with multiple values (borderColor, etc.) , but someone may be working on them already... Should the bug report be filed under ui-dev or the Color Animation plugin page? It's not clear that Effects bundles carbon copies of Easing and Color
Update Adobe Dreamweaver Exchange Site
We need to update the Dreamweaver exchange site with jQuery UI 1.7 plugins (see #4246). What's required to create these extensions? Should this be part of our development process?
r2416 - Initial plugin commit.
Author: powella Date: Mon Mar 30 14:43:44 2009 New Revision: 2416 Added: branches/dev/overlay/ui/ui.overlay.js Log: Initial plugin commit. Added: branches/dev/overlay/ui/ui.overlay.js ============================================================================== --- (empty file) +++ branches/dev/overlay/ui/ui.overlay.js Mon Mar 30 14:43:44 2009 @@ -0,0 +1,220 @@ +/* + * jQuery UI Overlay @VERSION + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT
r2415 - Added functional demos.
Author: powella Date: Mon Mar 30 14:42:48 2009 New Revision: 2415 Added: branches/dev/overlay/demos/overlay/default.html Modified: branches/dev/overlay/demos/overlay/index.html Log: Added functional demos. Added: branches/dev/overlay/demos/overlay/default.html ============================================================================== --- (empty file) +++ branches/dev/overlay/demos/overlay/default.html Mon Mar 30 14:42:48 2009 @@ -0,0 +1,118 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery
Unicode Regex Support
Hello All, In a discussion on the jQuery UI Wiki () it was mentioned that supporting 'accented characters' (read: unicode characters) would be something preferable. Unicode support in regular experssions for javascript is pretty sparse, and very specific. It's outline very well here http://www.regular-expressions.info/unicode.html. Other languages and platforms support a much wider unicode support ranage and make it much easier to support unicode characters without much effort. There's a pretty extensive
r2414 - deleted an unused variable
Author: a.farkas.pm Date: Mon Mar 30 12:12:20 2009 New Revision: 2414 Modified: branches/dev/effects/tests/visual/animateClass/index.html branches/dev/effects/ui/effects.core.js Log: deleted an unused variable Modified: branches/dev/effects/tests/visual/animateClass/index.html ============================================================================== --- branches/dev/effects/tests/visual/animateClass/index.html (original) +++ branches/dev/effects/tests/visual/animateClass/index.html Mon
r2412 - Added button for removing a mask.
Author: powella Date: Mon Mar 30 09:14:11 2009 New Revision: 2412 Modified: branches/dev/mask/demos/mask/default.html Log: Added button for removing a mask. Modified: branches/dev/mask/demos/mask/default.html ============================================================================== --- branches/dev/mask/demos/mask/default.html (original) +++ branches/dev/mask/demos/mask/default.html Mon Mar 30 09:14:11 2009 @@ -37,7 +37,7 @@ $("#ssn").val('123456').mask('apply'); });
Next Page