ui-checklist.html 549 B

12345678
  1. <div>
  2. <label class="radio clip-radio radio-primary" ng-repeat="(key, option) in to.options" refresh="to.refresh($select.search, options)" refresh-delay="{{to.refreshDelay}}">
  3. <input type="checkbox" id="{{id + '_'+ $index}}" ng-model="multiCheckbox.checked[$index]"
  4. ng-change="to['onChange'](model[options.key], options, this, $event ,model);"
  5. checklist-model="model[options.key]" ng-change="multiCheckbox.change()" checklist-value="role.value">
  6. {{option[to.labelProp || 'name']}}
  7. </label>
  8. </div>