一旦加载并渲染角度引导程序预先输入,就使用回调

时间:2016-05-16 11:42:40

标签: javascript angularjs twitter-bootstrap

我有以下HTML代码

<div id="myQuestion" class="col-sm-9" style="overflow-y: auto;height: 100%;">
    <span>
        <input type="text" style="overflow:auto" ng-model="selected" 
             typeahead="item for item in filterInput($viewValue) |   limitTo:10"
             typeahead-on-select='onSelect($item)'>                                                                     
    </span>
</div>

一旦typeahead被过滤并呈现为ui,我希望有一个回调函数,类似于afterrender事件。我正在使用角度bootstrap typeahead。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:1)

typeaheadrendered时,无法检查回调。 但是你可以使用viewContentLoaded事件。

在你的控制器中听这个事件:

$scope.$on('$viewContentLoaded', function(){
    //do your stuff here
}