Files
LeafWeb/WebCms/Umbraco/Views/propertyeditors/checkboxlist/checkboxlist.html
T
2019-11-23 21:51:02 -05:00

10 lines
421 B
HTML

<div class="umb-editor umb-editor--list" ng-controller="Umbraco.PropertyEditors.CheckboxListController">
<ul class="unstyled">
<li ng-repeat="item in selectedItems" class="umb-editor__item">
<umb-checkbox name="checkboxlist" value="{{item.key}}" model="item.checked" text="{{item.val}}" required="model.validation.mandatory && !model.value.length"></umb-checkbox>
</li>
</ul>
</div>