UNPKG

ui-select

Version:
22 lines (20 loc) 1.23 kB
<button class="btn btn-default btn-xs" ng-click="ctrl.enable()">Enable ui-select</button> <button class="btn btn-default btn-xs" ng-click="ctrl.disable()">Disable ui-select</button> <button class="btn btn-default btn-xs" ng-click="ctrl.clear()">Clear ng-model</button> <h3>Select2 theme</h3> <p>Selected: <code>{{ctrl.person.selected}}</code></p> <ui-select ng-model="ctrl.person.selected" theme="select2" ng-disabled="ctrl.disabled" style="min-width: 300px;" title="Choose a person"> <ui-select-match placeholder="Select a person in the list or search his name/age...">{{$select.selected.name}}</ui-select-match> <ui-select-choices repeat="person.email as person in ctrl.people | propsFilter: {name: $select.search, age: $select.search}"> <div ng-bind-html="person.name | highlight: $select.search"></div> <small> email: {{person.email}} age: <span ng-bind-html="''+person.age | highlight: $select.search"></span> </small> </ui-select-choices> </ui-select> <br> <br> <br> <button class="btn btn-primary" ng-click="ctrl.person.selected = 'wladimir@email.com'">Change Model</button> <p>Runs <code>ctrl.person.selected = 'wladimir@email.com'</code></p>