2010-02-16 16:20:05 +00:00
|
|
|
<!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">
|
2010-02-17 02:08:43 +00:00
|
|
|
.ui-autocomplete-category {
|
|
|
|
padding:.2em .4em;
|
|
|
|
line-height:1.5;
|
|
|
|
}
|
2010-02-16 16:20:05 +00:00
|
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
2010-02-17 01:56:01 +00:00
|
|
|
$.each({
|
|
|
|
prevOf: "previousSibling",
|
|
|
|
nextOf: "nextSibling"
|
|
|
|
}, function( method, traversal ) {
|
|
|
|
$.fn[ method ] = function( selector ) {
|
|
|
|
return this.pushStack( this.map(function() {
|
|
|
|
var ret = this[ traversal ];
|
|
|
|
while ( ret && !$( ret ).is( selector ) ) {
|
|
|
|
ret = ret[ traversal ];
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}) );
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
$.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 + "Of"]('.ui-menu-item');
|
|
|
|
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 ) {
|
2010-02-17 02:08:43 +00:00
|
|
|
ul.append( "<li class='ui-widget-header ui-autocomplete-category'>" + item.category + "</li>" );
|
2010-02-17 01:56:01 +00:00
|
|
|
currentCategory = item.category;
|
|
|
|
}
|
|
|
|
self._renderItem( ul, item );
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
2010-02-16 16:20:05 +00:00
|
|
|
$(function() {
|
|
|
|
var data = [
|
2010-02-17 01:56:01 +00:00
|
|
|
{ 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" }
|
2010-02-16 16:20:05 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
$('#search').catcomplete({
|
2010-02-17 01:56:01 +00:00
|
|
|
source: data
|
2010-02-16 16:20:05 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="demo">
|
|
|
|
<label for="search">Search: </label>
|
|
|
|
<input id="search" />
|
|
|
|
</div><!-- End demo -->
|
|
|
|
|
|
|
|
<div class="demo-description">
|
|
|
|
<p>
|
2010-02-17 01:56:01 +00:00
|
|
|
A categorized search result. Try typing "a" or "n".
|
2010-02-16 16:20:05 +00:00
|
|
|
</p>
|
|
|
|
</div><!-- End demo-description -->
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|