Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  
<link href="//cdn.rawgit.com/angular-ui/ui-select/master/dist/select.css" rel="stylesheet" type="text/css" />
<link href="//cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.8.5/css/selectize.default.css">
  
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script>
<script src="//cdn.rawgit.com/angular-ui/ui-select/master/dist/select.min.js"></script>
  
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body ng-app="myApp" ng-controller="myAppController">
  <ui-select ng-model="newType.Type" theme="select2" style="min-width: 200px;">
    <ui-select-match>{{newType.Type}}</ui-select-match>
    <ui-select-choices repeat="t in definitions.Types">
      <div>{{t}}</div>
    </ui-select-choices>
  </ui-select>
</body>
</html>
 
.select2.select2-container {
  width: 200px !important;
}
 
angular.module('myApp', [ 'ui.select' ])
.controller('myAppController', function ($scope) {
  
  $scope.definitions ={
    "Definitions": [{
      "Id": "1",
      "Name": "Name 1"        
    }, {
      "Id": "2",
      "Name": "Name 2" 
    }],
    "Types": [
      "Type 1", "Type 2", "Type 3"
    ]
  };
  $scope.newType = {
    Type: $scope.definitions.Types[1] 
  };
  
})
;
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers