Zwischenstand neues Type Ahead mit

https://angular-ui.github.io/bootstrap/#/typeahead
This commit is contained in:
2016-05-30 16:59:04 +02:00
parent 64fc16e5a7
commit 2724df1b23
13 changed files with 564 additions and 312 deletions
@@ -56,6 +56,18 @@
</div>
</div>
<div>
<h4>Asynchronous results</h4>
<pre>Model: {{asyncSelected | json}}</pre>
<input type="text" ng-model="asyncSelected" placeholder="Locations loaded via $http"
uib-typeahead="address for address in getLocation($viewValue)" typeahead-loading="loadingLocations"
typeahead-no-results="noResults" class="form-control"> <i ng-show="loadingLocations"
class="glyphicon glyphicon-refresh"></i>
<div ng-show="noResults">
<i class="glyphicon glyphicon-remove"></i> No Results Found
</div>
</div>
<br />
<div class="row">