I have the following:
<div ng-repeat="(key, value) in result">
{{value}} => ESTO LO MUESTRA
<input type="radio" name="rGrpLab" ng-model="rGrpLab" value="key">
</div>
{{rGrpLab}} => ESTO NO LO MUESTRA
I know it's because it's inside the ng-repeat
, but I do not know how to get that value.
Any suggestions?
Greetings