ui-arae.html 727 B

123456789
  1. <ui-select ng-model="model[options.key]" theme="bootstrap" ng-required="{{to.required}}"
  2. ng-change="to['onChange'](model[options.key], options, this, $event ,model);"
  3. ng-disabled="to.disabled" reset-search-input="false">
  4. <ui-select-match placeholder="{{to.placeholder}}">
  5. {{$select.selected[to.labelProp || 'name']}}
  6. </ui-select-match>
  7. <ui-select-choices uiDisableChoice="option.disabled" repeat="option[to.valueProp || 'value'] as option in to.options | filter: $select.search" refresh="to.refresh($select.search, options)" refresh-delay="{{to.refreshDelay}}">
  8. <div ng-bind-html="option[to.labelProp || 'name'] | highlight: $select.search"></div> </ui-select-choices>
  9. </ui-select>