UNPKG

ui-select

Version:
27 lines (23 loc) 1.27 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>Event on Select</h3> <p>Selected: {{ctrl.person.selected}}</p> <ui-select ng-model="ctrl.person.selected" theme="select2" on-select="ctrl.onSelectCallback($item, $model)" 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> <hr /> <h3>Event Result</h3> <p>Called <code>{{ctrl.counter+0}}</code> times</p> <p>Parameters</p> <pre> $model = {{ ctrl.eventResult.model | json }} $item = {{ ctrl.eventResult.item | json }} </pre>