3
Through Pover I want to remain the values of the radiobutton, who should come to a preference textbox per line, so when the user wants to add options just insert a new value in the next line.
<div ng-repeat="controle in dataform.controles" ng-switch on="controle.tipo">   
  <div ng-switch-when="radio" class="kahiar-block">   
    <div id="cmp_{{controle.codcontrole}}" class="campos form-group disabled col-md-6 animated bounceInRight " ng-controller="ControlEditCtrl" popover-placement="top" uib-popover-template="dynamicPopover.templateUrl" popover-title="Editar Controle">  
      <div class="conteudo-campo">    
        <label data-id="lbl{{controle.codcontrole}}" class="label-titulo"></label>
        <div class="input-group">
          <label class="checkbox-inline" id="div_{{$index}}" ng-repeat="item in controle.opcoes track by $index" name="{{item.codcontrole}}">          
            <input id="radio_{{$index}}" icheck type="radio"  ng-value="item" ng-model="$parent.dataform[controle.nome]">
            {{item}}
          </label>        
        </div>
      </div>
    </div>
  </div>
</div>
 <script type="text/ng-template" id="myPopoverTemplate.html">
  <div class="form-group">        
    <label>Opções</label>
    <textarea  ng-model="controle.opcoes" class="form-control">
      {{controle.opcoes.join("\n").trim()}}
    </textarea>
  </div>
  <button class="btn btn-primary">Save</button>
</script>


Was the answer helpful to you? Don’t forget to choose and mark what to use if someone has a similar question
– Sorack