Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Autocomplete: Added demo of scrollable results. Fixes #5815 - Autocom…
…plete: document and demo a scrolling menu.
- Loading branch information
1 parent
44daca1
commit 5e3755af8aa17b2bf742761b6ca40acccb248a04
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |