ui-multiselectplus copy.html 740 B

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