I'm stil new with angularjs. I got this problem. I have found it in several questions but no one was beneficial for me because I used track by $index as mentionned but didnt work with me Can anyone help me please
html:
<table>
<tbody>
<tr class="main-heading">
<th>Images</th>
<th class="long-txt">Product Description</th>
<th>Numero de serie</th>
<th>Price</th>
<th>Total</th>
</tr>
<tr class="cake-bottom" data-ng-repeat="product in chosenPdtByQte track by $index">
<td class="cakes">
<div class="product-img2"></div>
</td>
<td class="cake-text">
<div class="product-text">
<h3>{{product.nameProduct}}</h3>
<p>Product Code: {{product.numserie}}</p>
</div>
</td>
<td ng-init="fetchNumSerie(product.id)">
<select name="singleSelect" ng-model="selecteOperation" ng-options="pdt as pdt.id for pdt in numSeries" >
</select>
</td>
<td>
<h4>{{product.price}}</h4>
</td>
<td class="top-remove">
<h4>{{product.price*quantite[product.id]}}</h4>
<div class="close-btm">
<h5>Remove</h5>
</div>
</td>
</tr>
</tbody>
</table>
And here is my controller where I am fulling my list
for (var i =0; i< $scope.chosenProducts.length; i++)
{
console.log(" lllll "+$scope.chosenProducts[i].quantite +" "+$scope.quantite[$scope.chosenProducts[i].id]);
for (var j=0; j<$scope.quantite[$scope.chosenProducts[i].id]; j++)
{
$scope.chosenPdtByQte.push($scope.chosenProducts[i]);
}
}
ng-repeat
causing the problem?ng-options
will throw the sameduplicates in a repeater are not allowed
error, so maybe you should double check thatnumSeries
is unique. – Scott