Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Autocomplete: Handle clicks outside the autocomplete after scrolling the ↵ | Scott González | 2010-08-05 | 1 | -1/+18 |
| | | | | results (which causes the body to gain focus). Fixes #5903 - Autocomplete doesn't close after scrolling. | ||||
* | Autocomplete: Don't reset text field value on blur unless it will actually ↵ | Scott González | 2010-08-04 | 1 | -1/+4 |
| | | | | change the value. Fixes #5900 - Autocomplete: mousing over menu option replaces text box contents, moves caret. | ||||
* | Datepicker: use a setTimeout 0 so the same code can run in IE (as other ↵ | Richard D. Worth | 2010-08-04 | 1 | -2/+5 |
| | | | | browsers) to set focus back to the datepicker text input if a month or year drop-down is clicked closed. Fixes #5897 - Datepicker: inconsistent behavior in IE when click to close month and year drop-downs | ||||
* | Dialog: modified so that minWidth is respected. Fixes #5531 - dialog width ↵ | Ziling Zhao | 2010-07-30 | 1 | -0/+4 |
| | | | | should be at least minWidth on creation. | ||||
* | Autocomplete: Respect the disabled option. Fixes #5619 - Autocomplete widget ↵ | Scott González | 2010-07-30 | 1 | -0/+12 |
| | | | | keeps looking for remote data even when it's disabled. | ||||
* | Revert "Use pushStack in widget method. Fixes #5732 - make the widget method ↵ | Scott González | 2010-07-30 | 4 | -4/+4 |
| | | | | | | maintain the stack" This reverts commit ea58cd5ac0d852a9c7d7ceadbcbb74006cf9052d. | ||||
* | Use pushStack in widget method. Fixes #5732 - make the widget method ↵ | jzaefferer | 2010-07-30 | 4 | -4/+4 |
| | | | | maintain the stack | ||||
* | Replace element.data(...) with $.data(element, ...). Fixes #5756 - Widget: ↵ | jzaefferer | 2010-07-30 | 1 | -1/+2 |
| | | | | Use $.data instead of .data for performance reasons | ||||
* | Dialog: Wrap buttons in a div so we can float the div instead of the ↵ | Scott González | 2010-07-29 | 1 | -2/+5 |
| | | | | individual buttons. Fixes #4529 - dialog buttons are accessed in wrong order using tab. | ||||
* | Progressbar: cleanup. | Scott González | 2010-07-29 | 1 | -25/+12 |
| | |||||
* | Tabs: coding standards. | Scott González | 2010-07-28 | 1 | -349/+365 |
| | |||||
* | Accordion: minor cleanup. | Scott González | 2010-07-27 | 1 | -91/+93 |
| | |||||
* | Core: Coding standards. | Scott González | 2010-07-22 | 1 | -71/+78 |
| | |||||
* | Accordion: Coding standards. | Scott González | 2010-07-22 | 1 | -207/+280 |
| | |||||
* | Core: Better support for areas in :focusable and :tabbable selectors. ↵ | Scott González | 2010-07-22 | 1 | -6/+19 |
| | | | | Partial fix for #4488 - :focusable and :tabbable are broken with jQuery 1.3.2. | ||||
* | Core: Added .outerWidth(), .outerHeight(), .innerWidth(), .innerHeight(). ↵ | Scott González | 2010-07-21 | 2 | -6/+45 |
| | | | | Fixes #5850 - .outerWidth(), .outerHeight(), .innerWidth(), .innerHeight() setters. | ||||
* | Core: Fixed :focusable and :tabbable selectors for to work with :hidden and ↵ | Scott González | 2010-07-21 | 1 | -1/+4 |
| | | | | :visibile selectors in jQuery 1.3.2+. Still need to handle areas properly. Partial fix for #4488 - :focusable and :tabbable are broken with jQuery 1.3.2. | ||||
* | 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. | ||||
* | Revert "Dialog: Don't set specific dimensions on the overlay - let it expand ↵ | Scott González | 2010-07-21 | 1 | -1/+5 |
| | | | | | | based on 100% dimensions. Fixes #3623 - Opening a Modal Dialog shows a horizontal scroll bar." This reverts commit b548d34e14421176be49d218f40feb18c5bc8f49. | ||||
* | Dialog: Don't set specific dimensions on the overlay - let it expand based ↵ | Scott González | 2010-07-20 | 1 | -5/+1 |
| | | | | on 100% dimensions. Fixes #3623 - Opening a Modal Dialog shows a horizontal scroll bar. | ||||
* | Accordion: Use this.headers instead of parsing the DOM to find headers when ↵ | Scott González | 2010-07-20 | 1 | -1/+1 |
| | | | | determining which panel is active. Fixes #5841 - Accordion active property inaccurate if nested accordion is present. | ||||
* | 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 |
| | |||||
* | Tabs: Fixed select method handling for index of -1. | Scott González | 2010-07-17 | 1 | -2/+6 |
| | |||||
* | Tabs: Updated tests. | Scott González | 2010-07-16 | 1 | -7/+3 |
| | |||||
* | Tabs: Fixed a broken commit for #3171. | Tiago Freire | 2010-07-16 | 1 | -5/+1 |
| | |||||
* | Dialog: Adjusted logic for finding the first tabbable element. Fixes #5767 - ↵ | Scott González | 2010-07-16 | 1 | -6/+3 |
| | | | | On open, the first tabbable element inside the dialog was never being focused in favor of the dialog container. | ||||
* | Sortable: Return an empty URL param for empty sortable lists. Fixed #5794 - ↵ | Holger Rüprich | 2010-07-17 | 1 | -0/+4 |
| | | | | sortable("serialize", {key: "foo[]"}) returns an empty string for an empty list | ||||
* | 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. | ||||
* | Datepicker: Fixed pt-BR translation. Fixes #5363 - Error in datepicker ↵ | Diego | 2010-07-16 | 1 | -3/+3 |
| | | | | translation for pt-BR. | ||||
* | Accordion: Use .addClass() instead of .toggleClass() during init so the ↵ | Scott González | 2010-07-16 | 1 | -1/+3 |
| | | | | classes can be added by the user. | ||||
* | Tabs: Added ability to reference tabs by href. Fixes #3171 - have option to ↵ | Tiago Freire | 2010-07-16 | 1 | -3/+19 |
| | | | | remove tab by href content, not just by index. | ||||
* | Button: Restrict DOM querying to labels. Fixes #5810 - Buttonset and applet ↵ | Scott González | 2010-07-16 | 1 | -1/+1 |
| | | | | error. | ||||
* | Fixed argument shifting for effects. Fixes #5731 - hide and show called with ↵ | kobrigo | 2010-07-16 | 1 | -5/+5 |
| | | | | ommiting the options in parameters does not call the callback. | ||||
* | Dialog: Fixed whitespace. | Scott González | 2010-07-16 | 1 | -9/+10 |
| | |||||
* | Widget: Deep extend options when creating a new plugin. Fixes #5830 - ↵ | Scott González | 2010-07-15 | 1 | -1/+1 |
| | | | | Widget: Using inheritance overwrites the base classes options. | ||||
* | Use .children() instead of .find() to manipulate accordion icons. Fixes ↵ | jzaefferer | 2010-07-15 | 1 | -4/+4 |
| | | | | #4645 - Accordion should only manipulate Icons that are children of ui-accordion-header | ||||
* | Dialog: allow setting position with ui.position arguments. Fixes #5459 - ↵ | Ben Hollis | 2010-07-14 | 1 | -46/+40 |
| | | | | Dialog: expose .position() API | ||||
* | All: Added http://jqueryui.com/about to header comments. | Scott González | 2010-07-14 | 31 | -32/+32 |
| | |||||
* | Dialog: Verify that we get a string back from .attr( "title" ) before using ↵ | Scott González | 2010-07-14 | 1 | -0/+4 |
| | | | | the return value. Fixes #5742 - Form field with `name="title"` moved to title area. | ||||
* | Add support for multiple events, along with hoverintent demo. Fixes #3614 - ↵ | jzaefferer | 2010-07-14 | 1 | -1/+1 |
| | | | | Accordion: support multiple events being set at the same time | ||||
* | Accordion: Add disabled class to headers and panels to fix styling in IE. ↵ | Scott González | 2010-07-14 | 1 | -7/+11 |
| | | | | Fixes #5332 - Accordion: Disabled accordion doesn't look disabled in IE. | ||||
* | Accordion: Animate padding when only showing/hiding a single panel. Fixes ↵ | Scott González | 2010-07-14 | 1 | -2/+2 |
| | | | | #5540 - Accordion: Jumpy animation when opening a panel after closing all. |