我有以下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。我怎样才能做到这一点?
答案 0 :(得分:1)
typeahead
为rendered
时,无法检查回调。
但是你可以使用viewContentLoaded
事件。
在你的控制器中听这个事件:
$scope.$on('$viewContentLoaded', function(){
//do your stuff here
}