$scope.radiolabels={
Name:"",
type:"radiobtns",
rbtn:[{
Name:"",
order:$scope.order
}]
};
How to iterate objct and its rbtn.I mean in the first div we have to iterate the object and inside that first div we need to iterate the rbtn.I have tried like below.
<ul>
<li ng-repeat="radiolbs in radiolabels track by $index">
RadioButtons {{$index}}: <input type="text" id="ral_{{$index}}" data-ng-model="$parent.radiolabels[$index].Name"/><br>
<div ng-repeat="r in radiolabels.rbtn track by $index">
Option {{$index}}<input type="text" id="rab_{{$index}}"><br>
Option {{$index}}<input type="text" id="rab_{{$index}}"><button class="btn btn-default">+</button>
</div>
</li>
</ul>
Its not working