ui-radio.html 676 B

1234567891011121314
  1. <div>
  2. <div class="radio clip-radio radio-primary radio-inline" ng-repeat="(key, option) in to.options">
  3. <input type="radio"
  4. id="{{id + '_'+ $index}}"
  5. name="{{id + '_'+ $index}}"
  6. tabindex="0" refresh="to.refresh($select.search, options)" refresh-delay="{{to.refreshDelay}}"
  7. ng-change="to['onChange'](model[options.key], options, this, $event ,model);"
  8. ng-value="option[to.valueProp || 'value']"
  9. ng-model="model[options.key]" >
  10. <label for="{{id + '_'+ $index}}">
  11. {{option[to.labelProp || 'name']}}
  12. </label>
  13. </div>
  14. </div>