I am trying to change the input name, value and label on a repeatable element.
<div class="input" ng-repeat='value in configOption.values track by $index'>
<label>{OptionName}</label>
<a ng-click="" ng-init="">Change between OPT1 and OPT2</a>
<input type="text" ng-model="value.opt1" placeholder="OPT1">
</div>
The expected result:
When i am clicking the a element to toggle the input and change the Label
From: <input type="text" ng-model="value.opt1" placeholder="OPT1">
To <input type="text" ng-model="value.opt2" placeholder="OPT2">
Being that the entire div is a repeatable element.
Any idea how can i deal with this ?