mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
92 lines
2.6 KiB
HTML
92 lines
2.6 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>jQuery UI Autocomplete Custom Data 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-category {
|
|
padding:.2em .4em;
|
|
margin:.8em 0 .2em;
|
|
line-height:1.5;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
$.extend( $.ui.menu.prototype, {
|
|
next: function() {
|
|
this.move("next", ".ui-menu-item:first");
|
|
},
|
|
|
|
previous: function() {
|
|
this.move("prev", ".ui-menu-item:last");
|
|
},
|
|
|
|
move: function(direction, edge) {
|
|
if (!this.active) {
|
|
this.activate(this.element.children(edge));
|
|
return;
|
|
}
|
|
var next = this.active[direction + "All"]('.ui-menu-item').eq( 0 );
|
|
if (next.length) {
|
|
this.activate(next);
|
|
} else {
|
|
this.activate(this.element.children(edge));
|
|
}
|
|
}
|
|
});
|
|
|
|
$.widget("custom.catcomplete", $.ui.autocomplete, {
|
|
_renderMenu: function( ul, items ) {
|
|
var self = this,
|
|
currentCategory = "";
|
|
$.each( items, function( index, item ) {
|
|
if ( item.category != currentCategory ) {
|
|
ul.append( "<li class='ui-widget-header ui-autocomplete-category ui-corner-all'>" + item.category + "</li>" );
|
|
currentCategory = item.category;
|
|
}
|
|
self._renderItem( ul, item );
|
|
});
|
|
}
|
|
});
|
|
</script>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
var data = [
|
|
{ label: "anders", category: "" },
|
|
{ label: "andreas", category: "" },
|
|
{ label: "antal", category: "" },
|
|
{ label: "annhhx10", category: "Products" },
|
|
{ label: "annk K12", category: "Products" },
|
|
{ label: "annttop C13", category: "Products" },
|
|
{ label: "anders andersson", category: "People" },
|
|
{ label: "andreas andersson", category: "People" },
|
|
{ label: "andreas johnson", category: "People" }
|
|
];
|
|
|
|
$('#search').catcomplete({
|
|
source: data
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="demo">
|
|
<label for="search">Search: </label>
|
|
<input id="search" />
|
|
</div><!-- End demo -->
|
|
|
|
<div class="demo-description">
|
|
<p>
|
|
A categorized search result. Try typing "a" or "n".
|
|
</p>
|
|
</div><!-- End demo-description -->
|
|
|
|
</body>
|
|
</html>
|