I'm currently working with an Angular select box and I'm looking to display a scroll bar if there are more than 5 data entries.
<select class="form-control" data-ng-model='projectListData.appVersion' ng-selected ng-options="v.version as v.version for v in versionList | orderBy:'-version' " >
<option value="" selected="selected" disabled="disabled">Choose Version</option>
</select>
I attempted to use the 'size' attribute but it didn't work as expected.
size = '5'
Please provide your suggestions.