Is it possible to increase the value in $scope by using values from an ng-repeat loop?
Here is the code snippet I am working with:
<div ng-repeat="field in selected.inhoud.fields">
<p>Field Name: {{field.title}}</p>
<p>Size in %:
<input type="range" min="10" max="80" ng-model="field.width" ngvalue="field.width" />
</p>
</div>
How can I calculate the total width of all field.width values?
Thank you