ui-checkbox.html 625 B

1234567891011121314151617181920
  1. <!--<div>-->
  2. <!--{{to.label}}-->
  3. <!--</div>-->
  4. <!--<div class="checkbox">-->
  5. <!--<label>-->
  6. <!--<input type="checkbox"-->
  7. <!--class="formly-field-checkbox"-->
  8. <!--ng-model="model[options.key]">-->
  9. <!--{{to.label}}-->
  10. <!--{{to.required ? '*' : ''}}-->
  11. <!--</label>-->
  12. <!--</div>-->
  13. <div class="padding-top-5">
  14. <label>{{to.label}}<span ng-if="to.required" style="color:red">*</span>:</label>
  15. <div class="setting-box clearfix" style="padding-top:2px;padding-bottom:2px">
  16. <span class="setting-switch pull-left">
  17. <switch ng-model="model[options.key]" class="green" ></switch>
  18. </span>
  19. </div>
  20. </div>