Permalink
1 comment
on commit
sign in to comment.
Showing
with
273 additions
and 113 deletions.
- +1 −1 demos/addClass/default.html
- +28 −13 demos/autocomplete/combobox.html
- +2 −2 demos/autocomplete/custom-data.html
- +1 −1 demos/autocomplete/default.html
- BIN demos/{ → autocomplete}/images/jquery_32x32.png
- BIN demos/{ → autocomplete}/images/jqueryui_32x32.png
- BIN demos/{ → autocomplete}/images/sizzlejs_32x32.png
- BIN demos/{ → autocomplete}/images/transparent_1x1.png
- BIN {themes/base → demos/autocomplete}/images/ui-anim_basic_16x16.gif
- +2 −0 demos/autocomplete/index.html
- +52 −0 demos/autocomplete/maxheight.html
- +3 −0 demos/autocomplete/multiple-remote.html
- +1 −1 demos/autocomplete/multiple.html
- +3 −0 demos/autocomplete/remote-jsonp.html
- +3 −0 demos/autocomplete/remote-with-cache.html
- +3 −0 demos/autocomplete/remote.html
- +2 −2 demos/autocomplete/search.php
- +3 −0 demos/autocomplete/xml.html
- +1 −1 demos/removeClass/default.html
- +2 −2 demos/switchClass/default.html
- +1 −1 demos/toggleClass/default.html
- +6 −1 tests/unit/autocomplete/autocomplete_defaults.js
- +22 −26 tests/unit/dialog/dialog_options.js
- +4 −0 tests/unit/draggable/draggable_options.js
- +2 −1 tests/unit/tabs/tabs.html
- +1 −10 tests/unit/tabs/tabs_methods.js
- +2 −1 tests/unit/widget/widget.html
- 0 tests/unit/widget/{widget.js → widget_core.js}
- +46 −0 tests/unit/widget/widget_tickets.js
- +3 −0 tests/visual/button/button_performance.html
- +1 −1 tests/visual/menu/drilldown.html
- +1 −1 tests/visual/menu/menu.html
- +1 −1 themes/base/jquery.ui.autocomplete.css
- +1 −1 themes/base/jquery.ui.dialog.css
- +3 −3 ui/i18n/jquery.ui.datepicker-pt-BR.js
- +3 −1 ui/jquery.ui.accordion.js
- +29 −16 ui/jquery.ui.autocomplete.js
- +1 −1 ui/jquery.ui.button.js
- +13 −15 ui/jquery.ui.dialog.js
- +4 −0 ui/jquery.ui.sortable.js
- +21 −9 ui/jquery.ui.tabs.js
- +1 −1 ui/jquery.ui.widget.js
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
| @@ -0,0 +1,52 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <title>jQuery UI Autocomplete Scrollable Results Demo</title> | ||
| <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" /> | ||
| <script type="text/javascript" src="../../jquery-1.4.2.js"></script> | ||
| <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script> | ||
| <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script> | ||
| <script type="text/javascript" src="../../ui/jquery.ui.position.js"></script> | ||
| <script type="text/javascript" src="../../ui/jquery.ui.autocomplete.js"></script> | ||
| <link type="text/css" href="../demos.css" rel="stylesheet" /> | ||
| <style type="text/css"> | ||
| .ui-autocomplete { | ||
| max-height: 100px; | ||
| overflow-y: auto; | ||
| } | ||
| /* IE 6 doesn't support max-height | ||
| * we use height instead, but this forces the menu to always be this tall | ||
| */ | ||
| * html .ui-autocomplete { | ||
| height: 100px; | ||
| } | ||
| </style> | ||
| <script type="text/javascript"> | ||
| $(function() { | ||
| var availableTags = ["ActionScript", "AppleScript", "Asp", "BASIC", "C", "C++", "Clojure", "COBOL", "ColdFusion", "Erlang", "Fortran", "Groovy", "Haskell", "Java", "JavaScript", "Lisp", "Perl", "PHP", "Python", "Ruby", "Scala", "Scheme"]; | ||
| $("#tags").autocomplete({ | ||
| source: availableTags | ||
| }); | ||
| }); | ||
| </script> | ||
| </head> | ||
| <body> | ||
|
|
||
| <div class="demo"> | ||
|
|
||
| <div class="ui-widget"> | ||
| <label for="tags">Tags: </label> | ||
| <input id="tags" /> | ||
| </div> | ||
|
|
||
| </div><!-- End demo --> | ||
|
|
||
| <div class="demo-description"> | ||
| <p> | ||
| When displaying a long list of options, you can simply set the max-height for the autocomplete menu to prevent the menu from growing too large. Try typing "a" or "s" above to get a long list of results that you can scroll through. | ||
| </p> | ||
| </div><!-- End demo-description --> | ||
|
|
||
| </body> | ||
| </html> |
Oops, something went wrong.
This comment has been minimized.
88ec776Damnit, I should stop using "git push"...