Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Core: Added .outerWidth(), .outerHeight(), .innerWidth(), .innerHeight(). ↵ | Scott González | 2010-07-21 | 1 | -6/+2 |
| | | | | Fixes #5850 - .outerWidth(), .outerHeight(), .innerWidth(), .innerHeight() setters. | ||||
* | Autocomplete: Fixed bad reference to ownerDocument. | Scott González | 2010-07-21 | 1 | -1/+1 |
| | |||||
* | Autocomplete: Added appendTo option. Fixes #5836 - Autocomplete: add ↵ | Scott González | 2010-07-21 | 1 | -2/+6 |
| | | | | appendTo option. | ||||
* | Autocomplete: Prevent the default behavior of pressing enter when the menu ↵ | Scott González | 2010-07-20 | 1 | -1/+1 |
| | | | | is open, even if no item is active. Partial fix for #5757 - Autocomplete combobox issues. | ||||
* | Autocomplete: Clear selectedItem property whenever the user types something. ↵ | Scott González | 2010-07-20 | 1 | -0/+1 |
| | | | | Also updated combobox to clear the select element when clearing the text element. Fixes #5453 - Autocomplete: combobox demo doesn't remove invalid values. | ||||
* | Autocomplet: refactored handling of menu's selected event. | Scott González | 2010-07-20 | 1 | -10/+7 |
| | |||||
* | Autocompelte: Only run a search if the value has changed; switching from a ↵ | Scott González | 2010-07-20 | 1 | -14/+4 |
| | | | | blacklist of keys to ignore. Fixes #5716 - autocomplete triggered when field copied with ctrl-c. | ||||
* | Autocomplete: Render items as text, not HTML. Fixes #5275 - suggestions are ↵ | Scott González | 2010-07-19 | 1 | -1/+1 |
| | | | | | | not html-encoded. As noted in the ticket, it's probably better to default to unstyled items to prevent problems. Users can still implement their own rendering method as shown in the custom data and display demo. | ||||
* | Autocomplete: Don't update the value of the text field until after setting ↵ | Scott González | 2010-07-19 | 1 | -2/+8 |
| | | | | focus. Fixes #5639 - Cursor jumps to beginning on select. | ||||
* | Menu: Only look for .ui-menu-item elements to determine if a menu item is ↵ | Scott González | 2010-07-19 | 1 | -2/+2 |
| | | | | the first or last element in the menu. Fixes #5528 - Autocomplete: Issue when try to navigate using up key by keyboard in IE6. | ||||
* | Autocomplete: Added position option. Fixes #5153 - Autocomplete position option. | Scott González | 2010-07-19 | 1 | -7/+10 |
| | |||||
* | Autocomplete: Use .outerWidth() for determining the size of the menu. Fixes ↵ | Scott González | 2010-07-16 | 1 | -3/+7 |
| | | | | #5832 - Autocomplete: menu has incorrect width. | ||||
* | All: Added http://jqueryui.com/about to header comments. | Scott González | 2010-07-14 | 1 | -2/+2 |
| | |||||
* | All: Define a local undefined variable inside the main closure. | Scott González | 2010-07-13 | 1 | -1/+1 |
| | |||||
* | Updated copyright headers to make it clear that you can choose between MIT ↵ | Scott González | 2010-07-09 | 1 | -6/+6 |
| | | | | and GPLv2. Also added a link to http://jquery.org/license. | ||||
* | Autocomplete: Updated escapeRegex utility based on http://xregexp.com/xregexp.js | jzaefferer | 2010-07-05 | 1 | -1/+1 |
| | |||||
* | Prevent autocomplete-menu from closing when clicking 'slowly', eg. a long ↵ | jzaefferer | 2010-05-18 | 1 | -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ález | 2010-04-23 | 1 | -0/+7 |
| | | | | | | lock, home, end keys. Fixes #5415 - Catch all common keys while typing a word. | ||||
* | Autocomplete: Refactored code for array filtering into ↵ | jzaefferer | 2010-04-16 | 1 | -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 ↵ | jzaefferer | 2010-04-08 | 1 | -2/+9 |
| | | | | selected item, if available. Fix for #5490 | ||||
* | Autocomplete: Only remove classes actually added by the widget, ui-widget ↵ | jzaefferer | 2010-03-26 | 1 | -1/+1 |
| | | | | etc. aren't added, so don't remove them | ||||
* | Added $.ui.keyCode.ALT to complete list of metakeys, used in autocomplete | jzaefferer | 2010-03-26 | 1 | -1/+1 |
| | |||||
* | Menu: Ignore clicks that don't occur on the anchor tag within a valid menu ↵ | Scott González | 2010-03-24 | 1 | -1/+1 |
| | | | | | | item. Fixes #5376 - Menu plugin fires select when border is clicked. | ||||
* | Menu: pass the original event to the select callback. | Scott González | 2010-03-20 | 1 | -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ález | 2010-03-20 | 1 | -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ález | 2010-03-20 | 1 | -0/+2 |
| | | | Fixes #5289 - Autocomplete: ignore cursor left/right. | ||||
* | Menu: skip over elements that aren't menu items. | Scott González | 2010-03-20 | 1 | -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 Zaefferer | 2010-03-20 | 1 | -23/+25 |
| | | | | differentiate between key and mouse events in autocomplete | ||||
* | fixed #5368 - Autocomplete: aria role for menu should be listbox instead of menu | Richard Worth | 2010-03-17 | 1 | -1/+1 |
| | |||||
* | Menu: Don't pass empty values to ._trigger(). | Scott González | 2010-03-16 | 1 | -1/+1 |
| | |||||
* | Autocomplete: fixed #5349 - Autocomplete: mouseover of menu item causes data ↵ | Richard Worth | 2010-03-15 | 1 | -1/+3 |
| | | | | loss | ||||
* | Autocomplete: fixed #5349 - Autocomplete: mouseover of menu item causes data ↵ | Richard Worth | 2010-03-15 | 1 | -0/+4 |
| | | | | loss | ||||
* | Autocomplete: Fixed #5348 - Autocomplete: menu item should not remain ↵ | Richard Worth | 2010-03-15 | 1 | -0/+3 |
| | | | | selected when mouse off menu | ||||
* | Autocomplete: fixed #5347 - Autocomplete: each successive item hover makes ↵ | Richard Worth | 2010-03-15 | 1 | -6/+6 |
| | | | | item above shrink a bit in IE | ||||
* | Autocomplete: quiet jslint | Richard Worth | 2010-03-11 | 1 | -17/+21 |
| | |||||
* | Autocomplete: Resize menu on every suggestion. | Scott González | 2010-03-11 | 1 | -3/+4 |
| | |||||
* | Autocomplete: Append menu to body and reset z-index on every suggestion. | Scott González | 2010-03-11 | 1 | -4/+7 |
| | | | | Fixes #5271. | ||||
* | Fixed #5305 - Autocomplete: open event should trigger after the menu is ↵ | Richard Worth | 2010-03-08 | 1 | -1/+1 |
| | | | | opened since the name is not 'beforeopen' | ||||
* | Autocomplete: search against label instead of value when both are provided. | Scott González | 2010-02-27 | 1 | -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ález | 2010-02-23 | 1 | -1/+1 |
| | |||||
* | Autocomplete: Reposition menu every time it opens. | Scott González | 2010-02-23 | 1 | -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ález | 2010-02-20 | 1 | -0/+1 |
| | | | | Fixes #5198 - Autocomplete: class needed on input element. | ||||
* | Autocomplete: Deactivate menu on close. | Scott González | 2010-02-20 | 1 | -2/+3 |
| | | | | Fixes #5205 - Autocomplete: blur causes last active menu item to be selected. | ||||
* | Autocomplete: Fixed bug with bgiframe usage. | Scott González | 2010-02-18 | 1 | -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 Zaefferer | 2010-02-16 | 1 | -1/+1 |
| | | | | with anchor-children | ||||
* | Fix for #5188 along with a half-functional demo (buggy keyboard navigation) | Jörn Zaefferer | 2010-02-16 | 1 | -3/+8 |
| | |||||
* | Fixed missing variable in menu's refresh method. | Scott González | 2010-02-12 | 1 | -1/+3 |
| | |||||
* | Autocomplete: Fix for #5154 - cleanup | Jörn Zaefferer | 2010-02-10 | 1 | -3/+0 |
| | |||||
* | Autocomplete: Fix for #5154 | Jörn Zaefferer | 2010-02-10 | 1 | -0/+1 |
| | |||||
* | Autocomplete: Fix for #5154 | Jörn Zaefferer | 2010-02-10 | 1 | -0/+4 |
| |