Files
Umbraco-CMS/src/Umbraco.Web.UI.Client/src/views/propertyeditors/dropdown/dropdown.prevalue.html

13 lines
486 B
HTML

<div ng-controller="Umbraco.Editors.DropdownPreValueController">
<ul class="unstyled">
<li>
<input name="newItem" type="text" ng-model="newItem" val-highlight="hasError" />
<button class="btn" ng-click="add($event)">Add</button>
</li>
<li ng-repeat="item in model.value">
<input type="text" ng-model="item" />
<button class="btn" ng-click="remove(item, $event)">Remove</button>
</li>
</ul>
</div>