I have a ng-repeat iteration like this:
<p ng-repeat="(label,field) in app.config.properties">
<span class="radio-group" >
<div ng-repeat="option in x.options">
{{label}}
</div>
</span>
</p>
I am unable to access the label inside nested loop. I also tried using $parent.label but doesn't seem to work.
tag...Change either
to make it work.