I want to make an item is pre selected in my selectbox,how it is possible in angularjs my code is given below
<select ng-model="selectedClient" ng-init="client.id == 117" ng-options="client.name for client in
clients" class="form-control"></select>
I want to make item 117 as preselected but it is not working.
ng-options="client.id as client.name for client in clients"