I am facing an issue when using angular-chosen plugin in my app.
<select class="form-control chosen-rtl" id="userList" ng-model="ssc.selectedUser" chosen multiple search-contains="true"
placeholder-text-multiple=" ' ' " no-results-text=" ' ' " ng-options="user.username as user.nameAr for user in ssc.userList">
<option value=""></option>
</select>
I am displaying the list of usernames in dropdown. When user selects an option it should tag its id (user.nameAr) not dropdown label which is userName. Can anybody help me in finding a solution ?
Just simply do this:
With this user.username will be displayed in the options and on selection user.nameAr will bind to the ng-model.