I am using angular strap select box. But, I want to disable all the options of the selectbox, how do I achieve this?
$scope.itemsPerPageList = ['All','10','20','30','40'];
<select class="span2"
ng-init="itemsPerPage = itemsPerPageList[0]"
ng-model="itemsPerPage" ng-change="changePager()"
ng-options="obj as obj for obj in itemsPerPageList"
data-style="btn-primary" bs-select>
</select>
I tried using ng-disabled=true, but no luck.