cmsmon
Version:
11 lines (10 loc) • 517 B
HTML
<div style="margin-top: 7px;cursor: pointer;">
<ui-select data-ng-model="vm.editState.editMode" theme="bootstrap" on-select="vm.onSelect($item)">
<ui-select-match placeholder="">
{{$select.selected.label}}
</ui-select-match>
<ui-select-choices data-repeat="item.value as item in vm.modes | filterBy: ['label']: $select.search">
<div ng-bind-html="item.label | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
</div>