I am using typeahead from Angular Bootstrap. Sample plunker provided by them is here. As you can see $scope.states
is filled by the array:
$scope.states = ['Alabama', 'Alaska', 'Arizona', ... ];
And it looks like this:
However, if I change the plunker to an array of numbers, as in this plunker; although you can move your cursor, and it returns you the values starting with the number you have typed; you can't see the content on the dropdown and it looks weird:
Is there a way to make typeahead work with integers?