1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="../src/jquery.typeahead.css">
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
<script src="../src/jquery.typeahead.js"></script>
</head>
<body>
<div style="width: 100%; max-width: 800px; margin: 0 auto;">
<h1>Newitem_v1 Demo</h1>
<ul>
<li>
<a href="http://www.runningcoder.org/jquerytypeahead/documentation/">Documentation</a>
</li>
<li>
<a href="http://www.runningcoder.org/jquerytypeahead/demo/">Demos</a>
</li>
</ul>
<form>
<div class="typeahead__container">
<div class="typeahead__field">
<div class="typeahead__query">
<input class="js-typeahead"
name="q"
autofocus
autocomplete="off">
</div>
<div class="typeahead__button">
<button type="submit">
<span class="typeahead__search-icon"></span>
</button>
</div>
</div>
</div>
</form>
<script>
$.typeahead({
input: ".js-typeahead",
minLength: 0,
order: "asc",
searchOnFocus: true,
source: {
groupName: {
data: ['one', 'two', 'tree']
}
},
template: function (query, item) {
var template = '{{display}}';
if (item.addNewItem) {
template = 'New Item';
}
return template;
},
callback: {
onResult: function (node, query, result, resultCount, resultCountPerGroup) {
result.push({
addNewItem: true,
group: 'groupName'
});
},
onClick: function (node, a, item, event) {
if (item.addNewItem) {
event.preventDefault();
alert('Create new item!')
}
}
},
debug: true
});
</script>
</div>
</body>
</html>
|