aboutsummaryrefslogtreecommitdiffstats
path: root/ui
Commit message (Collapse)AuthorAgeFilesLines
* Replaced hexadecimal demo with decimal demo. Updated that and the currency ↵jzaefferer2010-10-231-130/+44
| | | | demo (previously donation) to use globalization plugin with a select for three different cultures (probably more to come). Updated spinner widget to use Globalization when available, replacing all number formatting related options with a single numberformat option.
* Porting old spinner implementation to 1.8, dropping some baggage.jzaefferer2010-10-221-0/+505
|
* Autocomplete: Split menu resizing logic into its own method to create a more ↵Scott González2010-10-211-7/+11
| | | | logical method to proxy for custom sizing.
* Widget: Don't throw errors for invalid method calls (wait till 1.9 to add ↵Scott González2010-10-211-9/+13
| | | | this back). Reverts fix for #5972 - Widget: Throw error for non-existent method calls.
* Position: Use a better check for determining if an object is a window. Fixes ↵Scott González2010-10-201-1/+2
| | | | #6201 - Autocomplete: Broken menu in IE8 Standards Mode when including prototype framework.
* Widget: Fixed reference to element in _getCreateOptions().Scott González2010-10-191-1/+1
|
* Core: Don't use $.style since it doesn't exist in jQuery 1.3.2. Fixes #6196 ↵Scott González2010-10-191-2/+2
| | | | - outerWidth() setter broken with jQuery 1.3.2.
* Mouse: better check for not IE9 or greater in case mode was set by ↵Richard D. Worth2010-10-151-1/+1
| | | | X-UA-Compatible. See http://msdn.microsoft.com/en-us/library/cc196988%28VS.85%29.aspx for more info. Fixes #5370 - All drag & drop events fail in IE9. Thanks xirzec.
* changed jQuery to $ in last commit for consistencyRichard D. Worth2010-10-141-1/+1
|
* Mouse: Limit mouseup out of window check to only versions of IE earlier than ↵Richard D. Worth2010-10-141-1/+1
| | | | 9 as IE9 has this fixed. Fixes #5370 - All drag & drop events fail in IE9.
* Mouse: Always call event.preventDefault() in _mouseDown if we've met the ↵Scott González2010-10-131-5/+1
| | | | starting conditions. Fixes #6174 - Mouse: 1.4.3rc2 breaks interactions on anchors.
* Core: Minor cleanup.Scott González2010-10-121-4/+4
|
* Autocomplete: Don't react to key events on readonly inputs. Fixes #6170 - ↵Scott González2010-10-111-1/+1
| | | | autocomplete pops up on readOnly inputs.
* Autocomplete: Pass along some more original events.Scott González2010-10-111-2/+2
|
* Button: removed explicit call to _init() from _create(). Fixes #6165 - ↵=2010-10-091-1/+0
| | | | buttonset: refresh() fires twice on create
* Effects: Added borderColor to color animation list. Fixes #6164 - Effectts: ↵Scott González2010-10-081-1/+1
| | | | Allow borderColor to be animated.
* Widget: Simplified _getCreateOptions().Scott González2010-10-071-5/+1
|
* Widget: Added ability to define how to find options on init. Fixes #6158 - ↵Scott González2010-10-061-1/+8
| | | | Widget: Ability to define new methods for gathering options on init.
* Autocomplete: Prevent keypress events caused by enter key when selecting an ↵Dmitry Petrov2010-10-061-1/+13
| | | | item. Fixes #6055 - Autocomplete: Selecting an item by pressing enter submits the form in Opera.
* Datepicker: fixed problem on ids with. Fixed #6154 – Datepicker brokes ↵m157y2010-10-061-1/+1
| | | | handler ids with dashes
* Datepicker: fixed typo in russian localization. Fixed #6100 – Datepicker: ↵m157y2010-10-061-1/+1
| | | | Incorrect weekHeader for Russian localization
* Dialog: Fixed logic for mimicking minHeight. Fixes #6150 - Dialog ↵Scott González2010-10-051-14/+21
| | | | height:auto does not work in IE6.
* Autocomplete: Make sure we have a response before trying to check the ↵Scott González2010-10-051-1/+1
| | | | length. Fixes #6147 - Autocomplete: Errors on empty responses.
* Effects: Jump to final state and execute callbacks when $.fx.off is set to ↵Scott González2010-10-041-2/+16
| | | | true. Fixes #6131 - Dialog breaks when $.fx.off. Partial fix for #5512 - jQuery.fx.off and effect on jQuery UI Effects.
* Tab: modified init to display correct content of misordered div when hash ↵jenters2010-10-041-2/+2
| | | | present in url. Fixed #6125 - Incorrect selection of tab on init with hash in url and misordered divs
* Dialog: Don't change DOM position on open. Fixes #6137 - dialog('open') ↵John Firebaugh2010-10-041-3/+0
| | | | causes form elements to reset on IE7.
* Revert "Dialog: Don't change DOM position on open. Fixes #6137 - ↵Scott González2010-10-041-0/+3
| | | | | | | | dialog('open') causes form elements to reset on IE7." This reverts commit 67b1db14c964418ce8b1fd760d54761040cc32af. Reverting so I can commit again with the proper author.
* Dialog: Don't change DOM position on open. Fixes #6137 - dialog('open') ↵Scott González2010-10-041-3/+0
| | | | causes form elements to reset on IE7.
* Dialog: Don't pass props to jQuery when creating buttons.Scott González2010-10-011-1/+2
| | | | Thanks jitter.
* Dialog: Set the type on buttons. Fixes #6128 - Dialog: Buttons are not ↵Scott González2010-09-301-1/+1
| | | | type="button".
* Widget: Added create event. Fixes #6126 - Widget: Add create event.Scott González2010-09-291-0/+1
|
* Dialog: Batch size-related option settings.Scott González2010-09-271-43/+47
|
* Widget: Added _setOptions method for handling normalized options setting. ↵Scott González2010-09-271-4/+9
| | | | Fixes #6114 - Widget: Add _setOptions() method.
* Progressbar: Added a complete event. Fixes #3500 - Progressbar callback at ↵Scott González2010-09-271-0/+3
| | | | the end.
* Autocomplete: Only prevent the default action for enter when a menu item is ↵Scott González2010-09-271-2/+2
| | | | | | active. Fixes #6038 - Autocomplete: Allow default behaviour on enter when menu is open but inactive. Thanks Ján Suchal.
* Autocomplete (Menu): Only traverse through .ui-menu-item elements for ↵Scott González2010-09-271-8/+10
| | | | paging. Fixes #6029 - Autocomplete: Custom item can be activated (and result in error) on PageUp/PageDown key click.
* Autocomplete: Handle IE firing focus events asynchronously. Fixes #6109 - ↵Scott González2010-09-241-0/+6
| | | | Autocomplete Change event does not fire in IE.
* Datepicker: Added Portuguese localization. Fixes #6102 - Datepicker: Add ↵Scott González2010-09-241-0/+22
| | | | Portuguese localization.
* Widget: Use charAt instead of substring for private method check.Daniel Steigerwald2010-09-201-1/+1
|
* Accordion: Don't pass multiple classes to .toggleClass(). Fixes #6084 - ↵Scott González2010-09-201-1/+2
| | | | Accordion: 1.8.5 not fully compatible with core 1.3.2.
* Core: Only use mousedown to prevent text selection in browsers that don't ↵Scott González2010-09-201-6/+7
| | | | support selectstart. Fixes #6080 - Core: disableSelection() disables select elements in Chrome.
* Datepicker: Added galician localization. Fixes #6079 - Datepicker: Add ↵Jorge Barreiro2010-09-201-0/+23
| | | | Galician localization.
* Effects: Fixed .show(), .hide(), .toggle() to accept a hash of options ↵Scott González2010-09-201-4/+17
| | | | again. Fixes #6078 - Effects: Passing an object for parameters no longer works. Fixes #6067 - Dialog show/hide animations do not work.
* Datepicker: Hightlight the curerent date, not the selected date. Fixes #5984 ↵Lim Chee Aun2010-09-201-1/+1
| | | | - Datepicker showing multiple months highlights selected day in all of them
* Autocomplete: Properly handle non-item clicks inside the suggestion list. ↵Scott González2010-09-201-1/+1
| | | | Fixes #6052 - Autocomplete suggestion list does not close properly.
* Dialog: Don't call draggable.destroy if we're not currently draggable. Fixes ↵Scott González2010-09-201-4/+7
| | | | #6069 - DIALOG windows 1.8.5 draggapble problem.
* datepicker: changed parseDate to be case insensitive. Fixed #6036 - ↵AndrewNewcomb2010-09-091-1/+1
| | | | datepicker: parseDate is case sensitive.
* Core: Avoid layout bug in IE with minHeight support test.Scott González2010-09-071-1/+3
|
* Tabs: Prevent opening a tab while panels are being animated. Fixes #4771 - ↵Christopher McCulloh2010-09-071-0/+1
| | | | Tabs: Occassionally displays multiple tabs when clicked with rotate control using opacity toggle fx.
* Core: Improvements to minHeight support test. Thanks jdalton.Scott González2010-09-071-6/+10
|