使用Typeahead选择值

时间:2015-02-17 17:23:37

标签: angularjs twitter-bootstrap

一旦加载了打字头并且应用了过滤器,我就无法从列表中选择值,我不知道我是否遗漏了该行上的内容:

<input id="carSelected" type="text" ng-model="carFilter" placeholder="Car"
    typeahead="car as car.Owner for car in carFilterController.GetCars()  | filter:Owner:$viewValue} | limitTo:10"
    typeahead-focus-first="true" class="form-control">

1 个答案:

答案 0 :(得分:0)

我相信typeahead-on-select正是您所寻找的。

样本用法:

     <input type="text" ng-model="queriedUser"" class="form-control" placeholder="Search Users"
        typeahead = "user in users | filter:{name:$viewValue} | limitTo:5"
        typeahead-on-select="goToProfile(queriedUser);">