aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.autocomplete.js
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote branch 'treyhunner/topic/autocomplete-pasting'Jörn Zaefferer2011-05-181-10/+25
|\
| * Autocomplete: Trigger search timeout on all input events. Fixes #6666 - ↵Trey Hunner2011-05-151-10/+25
| | | | | | | | | | | | | | keyboard-autorepeat on Firefox and paste event The input event triggers after all changes to an input field including paste/cut events.
* | Autocomplete: Revert fix for #7024, broke regular menu selection.Jörn Zaefferer2011-05-111-1/+0
|/ | | | Disabled test for now (need to reopen ticket).
* Autocomplete: Add comment to fix for #7269Jörn Zaefferer2011-05-101-0/+1
|
* Merge remote branch 'treyhunner/topic/arrow-keys'Jörn Zaefferer2011-05-101-0/+26
|\
| * Autocomplete: Fix list traversal bug. Fixes #7269 - autocomplete: holding ↵Trey Hunner2011-04-201-0/+26
| | | | | | | | | | | | | | down arrow keys in Firefox does not traverse list Use keypress event for listening for arrow keys because Firefox and Opera do not repeat keydown events for these keys.
* | Autocomplete: Added check to determine if menu has just been created to ↵kborchers2011-05-091-0/+1
| | | | | | | | override mouseover event and reset that variable from autocomplete on close. Fixed #7024 - Autocomplete menu options are activated even if mouse is not moved
* | Accordion, Autocomplete, Tabs: Separate callbacks and options in the defaults.Scott González2011-04-251-1/+10
|/
* Autocomplete: changed autoFocus default back to false. Reverts #7042 - ↵Richard Worth2011-03-281-1/+1
| | | | Autocomplete: Default autoFocus to true
* Autocomplete: Added response event. Fixes #6777 - Autocomplete callback when ↵Scott González2011-03-221-1/+4
| | | | search is complete.
* Autocomplete: moved autoFocus implementation to after menu visible for a11yRichard Worth2011-03-151-4/+4
|
* Autocomplete: changed autoFocus default to true for 1.9. Fixed #7042 - ↵Richard Worth2011-03-151-1/+1
| | | | Autocomplete: Default autoFocus to true
* Autocomplete: new option autoFocus, default false. Fixed #7032 - ↵Richard Worth2011-03-151-0/+5
| | | | Autocomplete: Add option to automatically highlight the first result
* Menu: Update autocomplete to use deactivate and check for focus classjzaefferer2011-02-241-4/+4
|
* Autocomplete: Added support for contenteditable elements. Fixes #6914 - ↵Scott González2011-02-241-12/+18
| | | | Autocomplete: Support contenteditable.
* Added version property to plugins that were missing them.Scott González2011-02-031-0/+1
|
* Autocomplete: Fixed handling of race conditions when using jQuery 1.3.2. ↵Scott González2011-01-271-6/+8
| | | | Fixes #6904 - Autocomplete: Race condition handling means.
* All: Define defaultElement for non-div widgets.Scott González2011-01-231-0/+1
|
* Updated copyright year.Scott González2011-01-171-1/+1
|
* Updated widgets to use new methods from $.Widget.Scott González2011-01-151-1/+1
|
* Change destroy to _destroy and remove calls to $.Widget.prototype.destroy in ↵Scott González2011-01-141-2/+1
| | | | widgets with simple destroy methods.
* Merge remote branch 'origin/menu'jzaefferer2010-12-221-185/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: demos/autocomplete/categories.html demos/autocomplete/combobox.html demos/autocomplete/custom-data.html demos/autocomplete/default.html demos/autocomplete/folding.html demos/autocomplete/multiple-remote.html demos/autocomplete/multiple.html demos/autocomplete/remote-jsonp.html demos/autocomplete/remote-with-cache.html demos/autocomplete/remote.html demos/autocomplete/xml.html demos/button/splitbutton.html demos/index.html tests/visual/menu/nested.html themes/base/jquery.ui.autocomplete.css ui/jquery.ui.autocomplete.js
| * Renamed menu event selected to select to be consistent with naming ↵jzaefferer2010-04-301-1/+1
| | | | | | | | conventions, already updated spec on wiki
| * First attempt at integrating key handling into menujzaefferer2010-04-301-0/+2
| |
| * Actually removed the menu code from the autocomplete filejzaefferer2010-04-301-182/+0
| |
| * Menu: Extracted menu code from autocomplete, updated all dependenciesjzaefferer2010-04-211-0/+1
| |
* | Autocomplete: Track pending requests and only remove the loading class when ↵Scott González2010-12-171-1/+8
| | | | | | | | the last request completes. Fixes #6761 - Autocomplete: Loading class removed when multiple Ajax requests occur.
* | Autocomplete: Abort pending ajax requests when disabled and prevent handling ↵Scott González2010-12-171-2/+5
| | | | | | | | results when disabled. Fixes #6752 - Menu may still render when autocomplete is disabled.
* | All: Remove workaround for .offset() setter bug from older versions of jQuery.Scott González2010-12-111-2/+0
| |
* | All: Replaced all uses of $.ui.contains() with $.contains(). Fixes #5000 - ↵Scott González2010-12-101-1/+1
| | | | | | | | Deprecate $.ui.contains.
* | Autocomplete: Update selectedItem in the asynchronous focus handling for IE. ↵Scott González2010-12-011-0/+1
| | | | | | | | Fixes #6709 - Autocomplete: Null ui.item on change event in IE8.
* | Autocomplete: Handle ajax errors and timeouts. Fixes #6692 - Autocomplete: ↵Scott González2010-11-301-4/+15
| | | | | | | | ui-autocomplete-loading class not removed when Ajax request times out.
* | Autocomplete: Re-position menu after resizing, not before. Fixes #6648 - ↵Scott González2010-11-121-3/+5
| | | | | | | | Autocomplete menu position issue when positioned to the right.
* | Autocomplete: Trigger close after hiding the menu. Fixes #6227 - ↵Scott González2010-10-261-1/+1
| | | | | | | | Autocomplete: Don't trigger close event until after the menu is hidden.
* | Autocomplete: Always reset this.term after a select event, even if the ↵Scott González2010-10-251-1/+3
| | | | | | | | select is cancelled. Fixes #6221 - Autocomplete: Doesn't reset after Select when textbox cleared, if same letters typed in rapidly; source function not triggered in that case.
* | 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.
* | 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
| |
* | 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.
* | 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.
* | 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.
* | 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.
* | Autocomplete: Store term when selecting an item to prevent another search ↵jzaefferer2010-08-311-0/+1
| | | | | | | | triggered before blur. Fixes #5591 - Home and End keys trigger search
* | Autocomplete: Abort existing ajax requests when running new searches.Scott González2010-08-241-1/+5
| |
* | Autocomplete: Don't handle remote data if it's not the most recent request. ↵Scott González2010-08-241-2/+7
| | | | | | | | Fixes #5982 - Autocomplete: Race condition causes incorrect suggestions.
* | Autocomplete: changed menu activated function to check if the offset is ↵Robson Braga Araujo2010-08-111-1/+1
| | | | | | | | greater than or equal the height. Fixed #5923 - autocomplete: Scrolling with the keyboard sometimes does not show the item (Chrome)
* | Autocomplete: changed the search function to always store the last term that ↵Robson Braga Araujo2010-08-111-4/+5
| | | | | | | | was entered by the user. Fixed #5922 - autocomplete: Search not triggered if the first letter is the same as the first letter of a previous erased content
* | Autocomplete: Handle clicks outside the autocomplete after scrolling the ↵Scott González2010-08-051-1/+18
| | | | | | | | results (which causes the body to gain focus). Fixes #5903 - Autocomplete doesn't close after scrolling.