ui-checkboxmore.html 429 B

123456
  1. <div class="check clip-check check-primary checkbox-inline" ng-repeat="(key, option) in to.options">
  2. <input type="checkbox" id="{{id + '_'+ $index}}" name="{{id + '_'+ $index}}" ng-change="to['onChange'](model[options.key], options, this, $event ,model,fields);" ng-model="model[options.key][option.value]">
  3. <label for="{{id + '_'+ $index}}">
  4. {{option[to.labelProp || 'name']}}
  5. </label>
  6. </div>