Here is the html code snippet I currently have:
<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>
I am looking for a way to implement a callback function that triggers after the typeahead filtering and rendering process has been completed. Essentially, I need something similar to an "afterrender" event. My project involves using angular bootstrap typeahead. How can I go about achieving this?