10 lines
421 B
HTML
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>
|