UI Select Example

by Himanshu Joshi

HTML

<script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.15/angular.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-select/0.11.2/select.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-select/0.11.2/select.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.15/angular-sanitize.js"></script>
<div ng-app="app" ng-controller="myCtrl as vm">
  <ui-select tagging ng-model="vm.selected">
    <ui-select-match placeholder="Pick one...">{{$select.selected.value}}</ui-select-match>
    <ui-select-choices repeat="val in vm.values | filter: $select.search track by val.value">
      <div ng-bind="val.value | highlight: $select.search"></div>
    </ui-select-choices>
  </ui-select>
</div>

JavaScript

var app = angular.module('app', ['ui.select']);

app.controller("myCtrl", function() {
  vm = this;
  vm.isLoaded = false;
  vm.values = [{
    'key': 22,
    'value': 'Kevin'
  }, {
    'key': 24,
    'value': 'Fiona'
  }];
  vm.selected;
});