Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Autocomplete: Removed the timeout for the change event. Fixes #7550 - ↵ | Scott González | 2012-02-16 | 1 | -12/+17 |
| | | | | | | Autocomplete change event not triggered in time. Thanks spekary for finding a workaround for IE. | ||||
* | Autocomplete: Fixed typo in comment. | Scott González | 2012-02-12 | 1 | -1/+1 |
| | | | | Thanks Jellyfrog. | ||||
* | Autocomplete: Cancel search when closing the menu. Fixes #7523 - ↵ | Scott González | 2012-02-11 | 1 | -1/+7 |
| | | | | Autocomplete cancel pending request when text changes below minLength. | ||||
* | Autocomplete: Set context for ajax requests instead of relying on default ↵ | Scott González | 2012-02-11 | 1 | -1/+3 |
| | | | | context. Fixes #7490 - Autocomplete fails when context option is set with ajaxSetup. | ||||
* | Menu: Change first() and last() to isFirstItem() and isLastItem() | kborchers | 2011-12-23 | 1 | -2/+2 |
| | |||||
* | Autocomplete: Don't invoke a search from arrow keys when the element can ↵ | meh-cfl | 2011-11-28 | 1 | -12/+14 |
| | | | | have multi-line text. Fixes #7639 - Key up/key down in textarea's should optionally not toggle auto-complete. | ||||
* | Autocomplete: Making sure we do not show search menu after a blur. Fixed ↵ | Shannon | 2011-11-23 | 1 | -1/+3 |
| | | | | #7423 - Tab out of autocomplete with remote source can leave menu showing. | ||||
* | Widget: Remove method argument from _super and _superApply. Was a left-over ↵ | Jörn Zaefferer | 2011-11-18 | 1 | -1/+1 |
| | | | | from first implementation, not necessary anymore. | ||||
* | Autocomplete: Add 1px to the width of the menu to avoid wrapping in Firefox. ↵ | Scott González | 2011-10-25 | 1 | -1/+3 |
| | | | | Fixes #7513 - Autocomplete: long text wraps in Firefox. | ||||
* | Widget: Added window and document properties. Fixes #7801 - Widget: Add ↵ | Scott González | 2011-10-20 | 1 | -6/+5 |
| | | | | document and window properties. | ||||
* | Autocomplete: Re-enable native autocomplete whent he page is unloaded. Fixes ↵ | Scott González | 2011-10-17 | 1 | -0/+10 |
| | | | | #7790 - Autocomplete-enabled text input does not keep value when using back button in browser. | ||||
* | Autocomplete: Avoid handling keypress when keydown modified the search term. ↵ | Scott González | 2011-10-17 | 1 | -0/+14 |
| | | | | Fixes #7799 - Autocomplete regression - Cannot type '&' in IE and Chrome. | ||||
* | Autocomplete: Don't react to the escape key if the menu isn't open. Fixes ↵ | Scott González | 2011-10-12 | 1 | -2/+4 |
| | | | | #7579 - autocomplete overwrites input erroneously when user hits ESC before timeout expires. | ||||
* | Autocomplete: Added missing semicolon. | Scott González | 2011-10-12 | 1 | -1/+1 |
| | |||||
* | Autocomplete: Use strict equality check. | Scott González | 2011-10-12 | 1 | -1/+1 |
| | |||||
* | Autocomplete: Don't react to menu blurs. Fixes #7742 - Autocomplete: Blur ↵ | Scott González | 2011-10-12 | 1 | -8/+0 |
| | | | | should not change the value of the input. | ||||
* | Autocomplete: Fix stray reference to element.val(). | David Leal | 2011-10-01 | 1 | -1/+1 |
| | |||||
* | Autocomplete: Delay option just delays request, doesn't clear existing ↵ | Jörn Zaefferer | 2011-09-24 | 1 | -1/+2 |
| | | | | timeout, therefore not preventing unncessary requests. Calling abort() on existing requests has no effect for JSONP, but even then its unncessary to start a request if the user is still typing. Works fine in 1-8-stable. | ||||
* | Autocomplete: Fixed setting of valueMethod for textareas. Fixes #7674 - ↵ | Scott González | 2011-08-30 | 1 | -1/+1 |
| | | | | Autocomplete doesn't work with textareas. | ||||
* | Autocomplete: ensure clear searching timeout on destroy. | Kouhei Sutou | 2011-08-07 | 1 | -0/+1 |
| | |||||
* | Autocomplete: Correcting readOnly from readonly - @scottgonzalez | Corey Frang | 2011-07-29 | 1 | -1/+1 |
| | |||||
* | Use .attr() for boolean ARIA attributes. | Scott González | 2011-07-12 | 1 | -3/+3 |
| | |||||
* | .attr() -> .prop() | Scott González | 2011-06-08 | 1 | -4/+4 |
| | |||||
* | All: Moved version numbers into prototypes. Fixed #7436 - Widget: Store ↵ | Scott González | 2011-05-28 | 1 | -1/+1 |
| | | | | version numbers on instances. | ||||
* | Autocomplete: Whitespace. | Scott González | 2011-05-27 | 1 | -7/+7 |
| | |||||
* | Merge remote branch 'treyhunner/topic/autocomplete-pasting' | Jörn Zaefferer | 2011-05-18 | 1 | -10/+25 |
|\ | |||||
| * | Autocomplete: Trigger search timeout on all input events. Fixes #6666 - ↵ | Trey Hunner | 2011-05-15 | 1 | -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 Zaefferer | 2011-05-11 | 1 | -1/+0 |
|/ | | | | Disabled test for now (need to reopen ticket). | ||||
* | Autocomplete: Add comment to fix for #7269 | Jörn Zaefferer | 2011-05-10 | 1 | -0/+1 |
| | |||||
* | Merge remote branch 'treyhunner/topic/arrow-keys' | Jörn Zaefferer | 2011-05-10 | 1 | -0/+26 |
|\ | |||||
| * | Autocomplete: Fix list traversal bug. Fixes #7269 - autocomplete: holding ↵ | Trey Hunner | 2011-04-20 | 1 | -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 ↵ | kborchers | 2011-05-09 | 1 | -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ález | 2011-04-25 | 1 | -1/+10 |
|/ | |||||
* | Autocomplete: changed autoFocus default back to false. Reverts #7042 - ↵ | Richard Worth | 2011-03-28 | 1 | -1/+1 |
| | | | | Autocomplete: Default autoFocus to true | ||||
* | Autocomplete: Added response event. Fixes #6777 - Autocomplete callback when ↵ | Scott González | 2011-03-22 | 1 | -1/+4 |
| | | | | search is complete. | ||||
* | Autocomplete: moved autoFocus implementation to after menu visible for a11y | Richard Worth | 2011-03-15 | 1 | -4/+4 |
| | |||||
* | Autocomplete: changed autoFocus default to true for 1.9. Fixed #7042 - ↵ | Richard Worth | 2011-03-15 | 1 | -1/+1 |
| | | | | Autocomplete: Default autoFocus to true | ||||
* | Autocomplete: new option autoFocus, default false. Fixed #7032 - ↵ | Richard Worth | 2011-03-15 | 1 | -0/+5 |
| | | | | Autocomplete: Add option to automatically highlight the first result | ||||
* | Menu: Update autocomplete to use deactivate and check for focus class | jzaefferer | 2011-02-24 | 1 | -4/+4 |
| | |||||
* | Autocomplete: Added support for contenteditable elements. Fixes #6914 - ↵ | Scott González | 2011-02-24 | 1 | -12/+18 |
| | | | | Autocomplete: Support contenteditable. | ||||
* | Added version property to plugins that were missing them. | Scott González | 2011-02-03 | 1 | -0/+1 |
| | |||||
* | Autocomplete: Fixed handling of race conditions when using jQuery 1.3.2. ↵ | Scott González | 2011-01-27 | 1 | -6/+8 |
| | | | | Fixes #6904 - Autocomplete: Race condition handling means. | ||||
* | All: Define defaultElement for non-div widgets. | Scott González | 2011-01-23 | 1 | -0/+1 |
| | |||||
* | Updated copyright year. | Scott González | 2011-01-17 | 1 | -1/+1 |
| | |||||
* | Updated widgets to use new methods from $.Widget. | Scott González | 2011-01-15 | 1 | -1/+1 |
| | |||||
* | Change destroy to _destroy and remove calls to $.Widget.prototype.destroy in ↵ | Scott González | 2011-01-14 | 1 | -2/+1 |
| | | | | widgets with simple destroy methods. | ||||
* | Merge remote branch 'origin/menu' | jzaefferer | 2010-12-22 | 1 | -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 ↵ | jzaefferer | 2010-04-30 | 1 | -1/+1 |
| | | | | | | | | conventions, already updated spec on wiki | ||||
| * | First attempt at integrating key handling into menu | jzaefferer | 2010-04-30 | 1 | -0/+2 |
| | | |||||
| * | Actually removed the menu code from the autocomplete file | jzaefferer | 2010-04-30 | 1 | -182/+0 |
| | |