Posts by Denali • 53 points
3 posts
-
0
votes2
answers2054
viewsQ: How to increment the counter with ng-repeat?
<div ng-repeat="column in columns"> <div ng-if="column.new"> {{ contador = contador + 1 }} <span ng-if="contador === 1"> <div class="alert…
-
2
votes2
answers56
viewsQ: Is there a way to transform a string as a path?
var sql = { datatypes: { integer: { INT: { mysql: 'INT' }, SMALLINT: { mysql: 'SMALLINT' } } } } //…
-
3
votes1
answer77
viewsQ: Double Binding is not working with Angularjs
<div ng-controller="TestController"> <div class="col-md-6 col-md-offset-2"> <table class="table table-bordered"> <tr ng-repeat="column in columns track by $index" >…