I have problem in setting the selected dropdown value from the server.
<select **class="form-control input-sm"** placeholder="Choose Email"
ng-model="groupForm.email"
ng-options="agentListl.email for agentListl in agentList track by agentListl.id">
</select>
I set the previously selected value from the server by setting the id for groupForm.email.
With this select, It works fine. But when I change the class from class="form-control input-sm" to class="select-full", it is not setting the previously selected value. But i can get the selected value.
