Hello, I'm a beginner with AngularJS.
To insert and delete new fields, this is ok, see the fiddle: link
I need to load the page and not have all the content inside the jumbotron div in the DOM
<div class="jumbotron">
<button style="float:right " type="button" class="btn btn-danger" ng-click="removerIcms(icms)">x</button>
<label for="ex2">Regime</label>
<select class="form-control" ng-model="icms.regime" ng-options="r.regime for r in data">
<option value="">Selecione o Regime</option>
</select>
<label for="ex2" ng-show="icms.regime">Situação Tributária
<select class="form-control" ng-show="icms.regime" ng-model="icms.situacao" ng-options="s.situacao for s in icms.regime.SituacaoTributaria">
<option value="">Selecione a Situação Tributária</option>
</select>
</label>
<label for="ex2" ng-show="icms.regime">Origem
<select class="form-control" ng-model="icms.Origem" ng-options="o.Origem for o in icms.regime.Origens">
<option value="">Selecione a Origem do Produto</option>
</select>
</label>
</div>
How do I enter content only after clicking? This is already working, but I need to load the screen with just the include button and the content of the div jumbotron is not loaded at all.