r1952 - in trunk: demos/accordion tests/unit/accordion ui
Author: scott.gonzalez Date: Sun Feb 1 18:29:31 2009 New Revision: 1952 Modified: trunk/demos/accordion/collapsible.html trunk/tests/unit/accordion/accordion.js trunk/ui/ui.accordion.js Log: Accordion: Fixed #3969: Deprecated alwaysOpen for collapsible option; fixed demos, tests, and using alwaysOpen on init. Modified: trunk/demos/accordion/collapsible.html ============================================================================== --- trunk/demos/accordion/collapsible.html (original) +++ trunk/demos/accordion/collapsible.html Sun
r1948 - in trunk: tests/unit/tabs ui
Author: klaus.hartl Date: Sun Feb 1 13:09:02 2009 New Revision: 1948 Modified: trunk/tests/unit/tabs/tabs.js trunk/ui/ui.tabs.js Log: Tabs: Fixed IE bug which would mistake tabs as ajax with dynamically created HTML, fixes #4033 Modified: trunk/tests/unit/tabs/tabs.js ============================================================================== --- trunk/tests/unit/tabs/tabs.js (original) +++ trunk/tests/unit/tabs/tabs.js Sun Feb 1 13:09:02 2009 @@ -262,6 +262,17 @@ equals( $('a:eq(2)',
r1950 - trunk/tests/unit/tabs
Author: klaus.hartl Date: Sun Feb 1 13:28:10 2009 New Revision: 1950 Modified: trunk/tests/unit/tabs/tabs.js Log: Tabs: fixed test in IE... Modified: trunk/tests/unit/tabs/tabs.js ============================================================================== --- trunk/tests/unit/tabs/tabs.js (original) +++ trunk/tests/unit/tabs/tabs.js Sun Feb 1 13:28:10 2009 @@ -267,7 +267,7 @@ el = $('#tabs2').tabs(); - equals( $('a:eq(2)', el).data('load.tabs'), 'test.html', 'should
r1949 - trunk/tests/unit/tabs
Author: klaus.hartl Date: Sun Feb 1 13:22:05 2009 New Revision: 1949 Modified: trunk/tests/unit/tabs/tabs.js Log: Tabs: added simple test for length method Modified: trunk/tests/unit/tabs/tabs.js ============================================================================== --- trunk/tests/unit/tabs/tabs.js (original) +++ trunk/tests/unit/tabs/tabs.js Sun Feb 1 13:22:05 2009 @@ -111,12 +111,20 @@ expect(0); }); + + test('length', function() { + expect(1); +
Datepicker highlight custom dates CSS issue
Hello, I've been playing with the jQuery UI Datepicker 1.6rc6 with the target to have special dates with custom classes. I know that there is a solution, that was spoken about in here, using the beforeShowDay method. The I encountered is that the special class is added to the <td> tag of the day, and later on, a class that is called 'ui-state-default' is added to the <a> tag, which results in covering the special class that I made which was assigned to the <td> tag. example: <td class="specialClass">...<a
Creating Buttons with the jQuery UI CSS Framework
For those interested in using the jQuery UI CSS Framework to create buttons, check out Filament's new article: http://www.filamentgroup.com/lab/styling_buttons_and_toolbars_with_the_jquery_ui_css_framework/ This should prove useful as guidelines and recommendations for the future UI button widget.
Fwd: datepicker with multiple monht rows and columns has wrong layout
Would be great if someone could take a look into this. Thanks. - Richard
r1947 - in trunk: tests/visual/datepicker themes/base ui
Author: pazu2k@gmail.com Date: Sat Jan 31 21:50:12 2009 New Revision: 1947 Added: trunk/tests/visual/datepicker/multimonth.html Modified: trunk/themes/base/ui.datepicker.css trunk/ui/ui.datepicker.js Log: datepicker: #4032 - Incorrect layout in multiple month rows. I noticed the static tests were recently updated with a row-break so I have added the row-break fix for now so it will be ready for the release. We should seriously consider inline-block. Added: trunk/tests/visual/datepicker/multimonth.html
r1946 - trunk/ui
Author: scott.gonzalez Date: Sat Jan 31 20:37:19 2009 New Revision: 1946 Modified: trunk/ui/ui.draggable.js Log: Draggable: Fixed #3980: Don't allow connecting to disabled sortables. Modified: trunk/ui/ui.draggable.js ============================================================================== --- trunk/ui/ui.draggable.js (original) +++ trunk/ui/ui.draggable.js Sat Jan 31 20:37:19 2009 @@ -439,6 +439,7 @@ $(typeof this == 'string' ? this+'': this).each(function() { if($.data(this,
UI 1.5 + 1.6 together
In case this comes up again, here's a page that shows UI 1.5 and 1.6 working together: <a href="http://dev.jqueryui.com/attachment/ticket/3973/ui-versions.html">http://dev.jqueryui.com/attachment/ticket/3973/ui-versions.html</a> It uses the 1.5 dialog and the 1.6 dialog, both versions are draggable and resizable, at the same time. The page doesn't have any styling on it at all, but it proves that we can do this.
r1945 - trunk/ui
Author: scott.gonzalez Date: Sat Jan 31 18:11:06 2009 New Revision: 1945 Modified: trunk/ui/ui.accordion.js Log: Accordion: Added focus state to headers. Modified: trunk/ui/ui.accordion.js ============================================================================== --- trunk/ui/ui.accordion.js (original) +++ trunk/ui/ui.accordion.js Sat Jan 31 18:11:06 2009 @@ -40,7 +40,9 @@ this.headers = this.element.find(o.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all")
r1944 - trunk/ui
Author: rdworth Date: Sat Jan 31 18:00:38 2009 New Revision: 1944 Modified: trunk/ui/ui.draggable.js Log: draggable: changed option cursor default to 'auto' instead of 'default' Modified: trunk/ui/ui.draggable.js ============================================================================== --- trunk/ui/ui.draggable.js (original) +++ trunk/ui/ui.draggable.js Sat Jan 31 18:00:38 2009 @@ -404,7 +404,7 @@ connectToSortable: false, containment: false, cssNamespace: "ui",
r1943 - in trunk/tests/unit: dialog droppable
Author: rdworth Date: Sat Jan 31 17:57:28 2009 New Revision: 1943 Modified: trunk/tests/unit/dialog/dialog.js trunk/tests/unit/droppable/droppable.js Log: unit tests: fixed missing tests to hide with new qunit checkbox Modified: trunk/tests/unit/dialog/dialog.js ============================================================================== --- trunk/tests/unit/dialog/dialog.js (original) +++ trunk/tests/unit/dialog/dialog.js Sat Jan 31 17:57:28 2009 @@ -306,7 +306,7 @@ }); test("closeOnEscape",
r1942 - trunk/tests/unit/draggable
Author: rdworth Date: Sat Jan 31 17:54:28 2009 New Revision: 1942 Modified: trunk/tests/unit/draggable/defaults.js trunk/tests/unit/draggable/draggable_options.js Log: draggable unit tests: added some missing tests Modified: trunk/tests/unit/draggable/defaults.js ============================================================================== --- trunk/tests/unit/draggable/defaults.js (original) +++ trunk/tests/unit/draggable/defaults.js Sat Jan 31 17:54:28 2009 @@ -14,7 +14,7 @@ containment:
r1937 - trunk/tests/unit/draggable
Author: rdworth Date: Sat Jan 31 16:25:58 2009 New Revision: 1937 Added: trunk/tests/unit/draggable/defaults.js (contents, props changed) trunk/tests/unit/draggable/draggable_defaults.js (contents, props changed) trunk/tests/unit/draggable/draggable_events.js (contents, props changed) trunk/tests/unit/draggable/draggable_methods.js (contents, props changed) trunk/tests/unit/draggable/draggable_options.js (contents, props changed) trunk/tests/unit/draggable/draggable_tickets.js (contents, props changed)
r1941 - trunk/ui
Author: scott.gonzalez Date: Sat Jan 31 17:29:58 2009 New Revision: 1941 Modified: trunk/ui/ui.dialog.js Log: Dialog: Fixed #4015: Set z-index on shadow when the dialog opens. Modified: trunk/ui/ui.dialog.js ============================================================================== --- trunk/ui/ui.dialog.js (original) +++ trunk/ui/ui.dialog.js Sat Jan 31 17:29:58 2009 @@ -210,6 +210,7 @@ this._size(); this._position(options.position); uiDialog.show(options.show);
r1939 - in trunk: tests/unit/sortable ui
Author: scott.gonzalez Date: Sat Jan 31 17:02:34 2009 New Revision: 1939 Modified: trunk/tests/unit/sortable/sortable.js trunk/ui/ui.sortable.js Log: Sortable: Added defaults for cursor, cursorAt, opacity. Modified: trunk/tests/unit/sortable/sortable.js ============================================================================== --- trunk/tests/unit/sortable/sortable.js (original) +++ trunk/tests/unit/sortable/sortable.js Sat Jan 31 17:02:34 2009 @@ -9,12 +9,15 @@ var defaults = { appendTo:
r1940 - trunk/demos/sortable
Author: scott.gonzalez Date: Sat Jan 31 17:06:42 2009 New Revision: 1940 Modified: trunk/demos/sortable/connect-lists.html trunk/demos/sortable/empty-lists.html trunk/demos/sortable/portlets.html Log: Sortable demos: Updated all uses of connectWith to use a string instead of an array (array is deprecated). Modified: trunk/demos/sortable/connect-lists.html ============================================================================== --- trunk/demos/sortable/connect-lists.html (original) +++ trunk/demos/sortable/connect-lists.html Sat
r1938 - trunk/ui
Author: scott.gonzalez Date: Sat Jan 31 16:55:34 2009 New Revision: 1938 Modified: trunk/ui/ui.sortable.js Log: Sortable: Fixed #4017: Revert opacity after sort. Modified: trunk/ui/ui.sortable.js ============================================================================== --- trunk/ui/ui.sortable.js (original) +++ trunk/ui/ui.sortable.js Sat Jan 31 16:55:34 2009 @@ -937,7 +937,7 @@ //Do what was originally in plugins if(this._storedCursor) $('body').css("cursor", this._storedCursor);
r1936 - trunk/ui
Author: scott.gonzalez Date: Sat Jan 31 08:54:06 2009 New Revision: 1936 Modified: trunk/ui/ui.sortable.js Log: Sortable: Fixed #3979: Fixed using a string for connectWith option. Modified: trunk/ui/ui.sortable.js ============================================================================== --- trunk/ui/ui.sortable.js (original) +++ trunk/ui/ui.sortable.js Sat Jan 31 08:54:06 2009 @@ -462,14 +462,21 @@ this.refreshPositions(); }, + _connectWith: function() { + var options
r1935 - trunk/ui
Author: joern.zaefferer Date: Sat Jan 31 08:52:52 2009 New Revision: 1935 Modified: trunk/ui/ui.accordion.js Log: accordion: another partial fix for #4011, fixes tests/visual/accordion/width.html in FF, IE still buggy Modified: trunk/ui/ui.accordion.js ============================================================================== --- trunk/ui/ui.accordion.js (original) +++ trunk/ui/ui.accordion.js Sat Jan 31 08:52:52 2009 @@ -398,7 +398,14 @@ percentDone, showProps
r1934 - trunk/ui
Author: pazu2k@gmail.com Date: Sat Jan 31 02:40:55 2009 New Revision: 1934 Modified: trunk/ui/ui.datepicker.js Log: datepicker: #4003 - Inline datepicker and button panel. Modified: trunk/ui/ui.datepicker.js ============================================================================== --- trunk/ui/ui.datepicker.js (original) +++ trunk/ui/ui.datepicker.js Sat Jan 31 02:40:55 2009 @@ -1307,7 +1307,7 @@ var gotoDate = (this._get(inst, 'gotoCurrent') && inst.currentDay ? currentDate :
r1933 - in trunk/demos/progressbar: . images
Author: rdworth Date: Fri Jan 30 22:24:22 2009 New Revision: 1933 Modified: trunk/demos/progressbar/animated.html (contents, props changed) trunk/demos/progressbar/images/pbar-ani.gif (props changed) Log: eol-style and mime-type Modified: trunk/demos/progressbar/animated.html ============================================================================== --- trunk/demos/progressbar/animated.html (original) +++ trunk/demos/progressbar/animated.html Fri Jan 30 22:24:22 2009 @@ -1,42 +1,42 @@ -<!doctype
r1929 - in trunk: tests/unit/dialog tests/visual/dialog ui
Author: rdworth Date: Fri Jan 30 21:47:58 2009 New Revision: 1929 Added: trunk/tests/visual/dialog/dialog_option_shadow_false.html (contents, props changed) trunk/tests/visual/dialog/dialog_option_shadow_true.html (contents, props changed) Modified: trunk/tests/unit/dialog/dialog.js trunk/tests/visual/dialog/dialog_option_modal_false.html (contents, props changed) trunk/tests/visual/dialog/dialog_option_modal_true.html (contents, props changed) trunk/ui/ui.dialog.js Log: dialog: changed shadow default
r1930 - in trunk: demos/accordion demos/effect_types tests/visual/accordion
Author: rdworth Date: Fri Jan 30 21:54:48 2009 New Revision: 1930 Modified: trunk/demos/accordion/noAutoHeight.html (contents, props changed) trunk/demos/effect_types/all_effects.html (props changed) trunk/demos/effect_types/blind.html (props changed) trunk/demos/effect_types/bounce.html (props changed) trunk/demos/effect_types/clip.html (props changed) trunk/demos/effect_types/default.html (props changed) trunk/demos/effect_types/drop.html (props changed) trunk/demos/effect_types/explode.html (props
r1931 - trunk/demos/accordion
Author: rdworth Date: Fri Jan 30 21:56:46 2009 New Revision: 1931 Added: trunk/demos/accordion/no-auto-height.html - copied unchanged from r1930, /trunk/demos/accordion/noAutoHeight.html Removed: trunk/demos/accordion/noAutoHeight.html Modified: trunk/demos/accordion/index.html Log: accordion demos: file rename Modified: trunk/demos/accordion/index.html ============================================================================== --- trunk/demos/accordion/index.html (original) +++ trunk/demos/accordion/index.html Fri
r1932 - in trunk/demos/progressbar: . images
Author: rdworth Date: Fri Jan 30 22:08:17 2009 New Revision: 1932 Added: trunk/demos/progressbar/animated.html trunk/demos/progressbar/images/ trunk/demos/progressbar/images/pbar-ani.gif (contents, props changed) Modified: trunk/demos/progressbar/index.html Log: progressbar demos: Added animated progressbar demo Added: trunk/demos/progressbar/animated.html ============================================================================== --- (empty file) +++ trunk/demos/progressbar/animated.html Fri
r1928 - trunk/tests/visual/dialog
Author: rdworth Date: Fri Jan 30 20:41:20 2009 New Revision: 1928 Added: trunk/tests/visual/dialog/dialog_option_modal_false.html trunk/tests/visual/dialog/dialog_option_modal_true.html Log: dialog visual tests - added option modal true and false Added: trunk/tests/visual/dialog/dialog_option_modal_false.html ============================================================================== --- (empty file) +++ trunk/tests/visual/dialog/dialog_option_modal_false.html Fri Jan 30 20:41:20 2009 @@ -0,0
r1847 - trunk/ui
Author: paul.bakaus Date: Thu Jan 29 02:57:45 2009 New Revision: 1847 Modified: trunk/ui/ui.dialog.js Log: dialog: shadow is hidden during drag/resize for slow performance browsers (currently IE < 7) (fixes #3966) Modified: trunk/ui/ui.dialog.js ============================================================================== --- trunk/ui/ui.dialog.js (original) +++ trunk/ui/ui.dialog.js Thu Jan 29 02:57:45 2009 @@ -306,14 +306,16 @@ containment: 'document', start: function()
r1927 - trunk/ui
Author: scott.gonzalez Date: Fri Jan 30 20:33:36 2009 New Revision: 1927 Modified: trunk/ui/ui.dialog.js Log: Dialog: Shadow cleanup. - Don't hide shadow during drag/resize in IE6 (let the user do this one their own). - Let users modify the shadow option after init. .parents('.ui-dialog') .bind('dragstart resizestart', function() { $(this).find('.ui-dialog-content').dialog('option', 'shadow', false); }) .bind('dragstop resizestop', function() { $(this).find('.ui-dialog-content').dialog('option',
r1926 - trunk/ui
Author: scott.gonzalez Date: Fri Jan 30 18:55:56 2009 New Revision: 1926 Modified: trunk/ui/ui.accordion.js Log: Accordion: Partial fix for #4011: Smooth(er) animations with autoHeight: false. Removed some browser snifing. Added support for non-px units. Modified: trunk/ui/ui.accordion.js ============================================================================== --- trunk/ui/ui.accordion.js (original) +++ trunk/ui/ui.accordion.js Fri Jan 30 18:55:56 2009 @@ -395,14 +395,21 @@ return;
r1925 - trunk/ui
Author: rdworth Date: Fri Jan 30 18:36:47 2009 New Revision: 1925 Modified: trunk/ui/ui.sortable.js Log: Fixed #4008 (Sortable events are improperly named) Modified: trunk/ui/ui.sortable.js ============================================================================== --- trunk/ui/ui.sortable.js (original) +++ trunk/ui/ui.sortable.js Fri Jan 30 18:36:47 2009 @@ -983,6 +983,7 @@ $.extend($.ui.sortable, { getter: "serialize toArray", version: "@VERSION", + eventPrefix: "sort", defaults:
r1923 - in trunk: tests/unit/tabs ui
Author: klaus.hartl Date: Fri Jan 30 16:45:14 2009 New Revision: 1923 Modified: trunk/tests/unit/tabs/tabs.js trunk/ui/ui.tabs.js Log: Tabs: simplified tests a bit, found bug by that - fixed as well as two other unreported bugs Modified: trunk/tests/unit/tabs/tabs.js ============================================================================== --- trunk/tests/unit/tabs/tabs.js (original) +++ trunk/tests/unit/tabs/tabs.js Fri Jan 30 16:45:14 2009 @@ -22,23 +22,12 @@ var el; -// need to wait
r1924 - trunk/ui
Author: klaus.hartl Date: Fri Jan 30 17:16:59 2009 New Revision: 1924 Modified: trunk/ui/ui.tabs.js Log: Tabs: reviewed and simplified just a bit Modified: trunk/ui/ui.tabs.js ============================================================================== --- trunk/ui/ui.tabs.js (original) +++ trunk/ui/ui.tabs.js Fri Jan 30 17:16:59 2009 @@ -325,12 +325,10 @@ // which can become a usability and annoying problem with tabs('rotate'). if ($.browser.msie) this.blur(); - return
1.6 Blockers (re)tested against rc6
The following are bugs I've come across personally and can thus confirm their severity. There are probably more blockers but I won't comment on what I have not tested. All bugs below have been tested against a local copy of 1.6rc6. I first tried it against http://view.jquery.com/tags/ui/latest/ui/ but afterwards found out that rc5 was being served. *frown* #4009 (connectToSortable doesn't contain ui.item in callbacks) #3988 (Sortable "out" event is being fired on drop): I don't think this is a blocker
r1922 - trunk/demos/effect_methods
Author: scottjehl Date: Fri Jan 30 14:57:11 2009 New Revision: 1922 Added: trunk/demos/effect_methods/ trunk/demos/effect_methods/animate.html (contents, props changed) trunk/demos/effect_methods/effect.html (contents, props changed) trunk/demos/effect_methods/hide.html (contents, props changed) trunk/demos/effect_methods/show.html (contents, props changed) trunk/demos/effect_methods/toggle.html (contents, props changed) Log: added effect methods demos - still need class animations Added: trunk/demos/effect_methods/animate.html
effect methods demos
Is anyone able to fill out the last 4 method types (addClass,removeClass,toggleClass,switchClass), I got the others in there: http://jquery-ui.googlecode.com/svn/trunk/demos/effect_methods/ Even if you can get it working between classes, I might have time to get in there and trick out the styles. Thanks
r1921 - trunk/demos/effect_types
Author: scottjehl Date: Fri Jan 30 14:54:41 2009 New Revision: 1921 Added: trunk/demos/effect_types/all_effects.html trunk/demos/effect_types/blind.html trunk/demos/effect_types/bounce.html trunk/demos/effect_types/clip.html trunk/demos/effect_types/default.html trunk/demos/effect_types/drop.html trunk/demos/effect_types/explode.html trunk/demos/effect_types/fold.html trunk/demos/effect_types/highlight.html trunk/demos/effect_types/index.html trunk/demos/effect_types/puff.html trunk/demos/effect_types/pulsate.html
r1920 - trunk/demos/effect_types
Author: scottjehl Date: Fri Jan 30 14:35:58 2009 New Revision: 1920 Added: trunk/demos/effect_types/animate.html trunk/demos/effect_types/effect.html trunk/demos/effect_types/hide.html trunk/demos/effect_types/show.html trunk/demos/effect_types/toggle.html Removed: trunk/demos/effect_types/all_effects.html trunk/demos/effect_types/blind.html trunk/demos/effect_types/bounce.html trunk/demos/effect_types/clip.html trunk/demos/effect_types/default.html trunk/demos/effect_types/drop.html trunk/demos/effect_types/explode.html
r1919 - trunk/tests/visual/accordion
Author: joern.zaefferer Date: Fri Jan 30 13:47:20 2009 New Revision: 1919 Added: trunk/tests/visual/accordion/width.html (contents, props changed) Log: accordion: more realistic testcase for autoHeight:false accordion Added: trunk/tests/visual/accordion/width.html ============================================================================== --- (empty file) +++ trunk/tests/visual/accordion/width.html Fri Jan 30 13:47:20 2009 @@ -0,0 +1,57 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery
Next Page