You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
825 B
33 lines
825 B
<style>
|
|
.ui-autocomplete-loading { background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat; }
|
|
</style>
|
|
<script>
|
|
$(function () {
|
|
$("#birds").autocomplete({
|
|
source: "/Settings/TestResults",
|
|
minLength: 3,
|
|
delay: 500,
|
|
select: function (event, ui) {
|
|
$(this).val(ui.item.Title);
|
|
return false;
|
|
}
|
|
})
|
|
.data("autocomplete")._renderItem = function (ul, item) {
|
|
return $("<li></li>")
|
|
.data("item.autocomplete", item)
|
|
.append("<a><strong>" + item.Title + "</strong><br>" + item.FirstAired + "</a>")
|
|
.appendTo(ul);
|
|
};
|
|
});
|
|
</script>
|
|
|
|
|
|
|
|
<div class="demo">
|
|
|
|
<div class="ui-widget">
|
|
<label for="birds">Birds: </label>
|
|
<input id="birds" />
|
|
</div>
|
|
|
|
</div><!-- End demo --> |