bindLabel and bindValue chosen-multiple in Angular 1.5

227 Views Asked by At

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 ?

1

There are 1 best solutions below

1
On

Just simply do this:

<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.nameAr as user.username for user in ssc.userList">
      <option value=""></option>
</select>

With this user.username will be displayed in the options and on selection user.nameAr will bind to the ng-model.