I'm trying to list the data of two loops ng-repeat
of my code, but 1 of them is not working.
In this case, I'm using:
<ul class="nav nav-stacked nav-pills col-md-2" >
<li ng-repeat="g in formulario.grupos">
<a data-target="{{g.titulo}}" data-toggle="tab">{{g.titulo}}</a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content col-md-10" style="border:#000; border-radius:5px;">
<div class="tab-pane" id="" ng-repeat="c in g.campos" >
<input type="" ng-model="c.campo" name="" value="" class="form-control" > <!--ng-repeat="campo in g.campos"-->
</div>
</div>
My problem is there. The first loop brings the forms (groups) and the second list the inputs of these forms (fields)
This information is retrieved via localStorage from a JSON.