aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.autocomplete.js
Commit message (Collapse)AuthorAgeFilesLines
* All: Added http://jqueryui.com/about to header comments.Scott González2010-07-141-2/+2
|
* All: Define a local undefined variable inside the main closure.Scott González2010-07-131-1/+1
|
* Updated copyright headers to make it clear that you can choose between MIT ↵Scott González2010-07-091-6/+6
| | | | and GPLv2. Also added a link to http://jquery.org/license.
* Autocomplete: Updated escapeRegex utility based on http://xregexp.com/xregexp.jsjzaefferer2010-07-051-1/+1
|
* Prevent autocomplete-menu from closing when clicking 'slowly', eg. a long ↵jzaefferer2010-05-181-1/+7
| | | | mousedown. Fix for #5405 - Autocomplete: select event not triggered when mousedown duration > blur timeout
* Autocomplete: Ignore command (left and right/menu/windows), insert, caps ↵Scott González2010-04-231-0/+7
| | | | | | lock, home, end keys. Fixes #5415 - Catch all common keys while typing a word.
* Autocomplete: Refactored code for array filtering into ↵jzaefferer2010-04-161-5/+7
| | | | $.ui.autocomplete.filter, used by remote-with-cache and modified multiple-demo (now with local data); added multiple-remote to also show multiple with remote data
* Autocomplete: Track input changes and fire change-event on blur, along with ↵jzaefferer2010-04-081-2/+9
| | | | selected item, if available. Fix for #5490
* Autocomplete: Only remove classes actually added by the widget, ui-widget ↵jzaefferer2010-03-261-1/+1
| | | | etc. aren't added, so don't remove them
* Added $.ui.keyCode.ALT to complete list of metakeys, used in autocompletejzaefferer2010-03-261-1/+1
|
* Menu: Ignore clicks that don't occur on the anchor tag within a valid menu ↵Scott González2010-03-241-1/+1
| | | | | | item. Fixes #5376 - Menu plugin fires select when border is clicked.
* Menu: pass the original event to the select callback.Scott González2010-03-201-7/+7
| | | Fixes #5343 - Add option to allow form submission when option is chosen.
* Menu: Don't trigger select if a click occurs outside of a menu item.Scott González2010-03-201-0/+3
| | | Fixes #5376 - Menu plugin fires select when border is clicked.
* Autocomplete: Don't trigger a search when the left or right arrow keys are used.Scott González2010-03-201-0/+2
| | | Fixes #5289 - Autocomplete: ignore cursor left/right.
* Menu: skip over elements that aren't menu items.Scott González2010-03-201-3/+3
| | | Fixes #5188 - Refactor menu rendering for more customizing.
* autocomplete: pass through mouse and key events to menu methods in order to ↵Jörn Zaefferer2010-03-201-23/+25
| | | | differentiate between key and mouse events in autocomplete
* fixed #5368 - Autocomplete: aria role for menu should be listbox instead of menuRichard Worth2010-03-171-1/+1
|
* Menu: Don't pass empty values to ._trigger().Scott González2010-03-161-1/+1
|
* Autocomplete: fixed #5349 - Autocomplete: mouseover of menu item causes data ↵Richard Worth2010-03-151-1/+3
| | | | loss
* Autocomplete: fixed #5349 - Autocomplete: mouseover of menu item causes data ↵Richard Worth2010-03-151-0/+4
| | | | loss
* Autocomplete: Fixed #5348 - Autocomplete: menu item should not remain ↵Richard Worth2010-03-151-0/+3
| | | | selected when mouse off menu
* Autocomplete: fixed #5347 - Autocomplete: each successive item hover makes ↵Richard Worth2010-03-151-6/+6
| | | | item above shrink a bit in IE
* Autocomplete: quiet jslintRichard Worth2010-03-111-17/+21
|
* Autocomplete: Resize menu on every suggestion.Scott González2010-03-111-3/+4
|
* Autocomplete: Append menu to body and reset z-index on every suggestion.Scott González2010-03-111-4/+7
| | | | Fixes #5271.
* Fixed #5305 - Autocomplete: open event should trigger after the menu is ↵Richard Worth2010-03-081-1/+1
| | | | opened since the name is not 'beforeopen'
* Autocomplete: search against label instead of value when both are provided.Scott González2010-02-271-1/+1
| | | | | | Fixes #5237 - Array matching behaviour of autocomplete should match on label before value. Thanks Simon Cusack.
* Autocomplete: Fixed class removal in .destroy().Scott González2010-02-231-1/+1
|
* Autocomplete: Reposition menu every time it opens.Scott González2010-02-231-7/+6
| | | | Fixes #5217 - Autocomplete in Dialog is posiitoned incorrectly in 1.8 RC2.
* Autocomplete: Added a "ui-autocomplete-input" class to the text field.Scott González2010-02-201-0/+1
| | | | Fixes #5198 - Autocomplete: class needed on input element.
* Autocomplete: Deactivate menu on close.Scott González2010-02-201-2/+3
| | | | Fixes #5205 - Autocomplete: blur causes last active menu item to be selected.
* Autocomplete: Fixed bug with bgiframe usage.Scott González2010-02-181-1/+1
| | | | | | Fixes #5196 - Autocomplete: "menu is not defined" error when using with bgiframe. Thanks Demphest
* Another partial fix for #5188 - add ui-menu-item class only to list items ↵Jörn Zaefferer2010-02-161-1/+1
| | | | with anchor-children
* Fix for #5188 along with a half-functional demo (buggy keyboard navigation)Jörn Zaefferer2010-02-161-3/+8
|
* Fixed missing variable in menu's refresh method.Scott González2010-02-121-1/+3
|
* Autocomplete: Fix for #5154 - cleanupJörn Zaefferer2010-02-101-3/+0
|
* Autocomplete: Fix for #5154Jörn Zaefferer2010-02-101-0/+1
|
* Autocomplete: Fix for #5154Jörn Zaefferer2010-02-101-0/+4
|
* Autocomplete: Split out logic for rendering individual items.Scott González2010-02-081-5/+10
|
* Autocomplete: Fixed a few places that got missed during the change to always ↵Scott González2010-02-081-7/+4
| | | | | | keep the menu element around. Fixes a bug where opening the menu using the arrow keys would cycle through the options, but not show the menu. There's now a bug where you have to arrow too many times to get into the menu when showing the menu by using the arrow keys.
* cleaning up dependency listingsJörn Zaefferer2010-02-031-0/+1
|
* create-html-elements conventionJörn Zaefferer2010-02-021-1/+1
|
* Fix for #5120 - create menu only once and return that element from the ↵Jörn Zaefferer2010-02-021-51/+51
| | | | widget method, put ui-autocomplete class on menu
* Autocomplete: Turned off collision detection.Scott González2010-01-301-1/+2
| | | | Fixes #5114 - Autocomplete: Turn off collision detection for menu.
* Autocomplete: Removed CSS framework classes from text field. We can add them ↵Scott González2010-01-281-1/+1
| | | | back in when we have full support for form elements.
* Happy New YearRichard Worth2010-01-201-2/+2
|
* Autocomplete: conform to coding standards.Scott González2010-01-171-104/+106
|
* Autocomplete: Use bgiframe on the menu if it's available.Scott González2010-01-171-0/+3
|
* Autocomplete: Set the z-index of the menu to be above the text field.Scott González2010-01-171-0/+1
|
* Widget factory: Changed _create to _init.Scott González2010-01-151-2/+2
| | | | Partial fix for #5064 - Widget: make multiple instantiation more useful.