Bind list with large array size

Binding not working with array binding of list having items around 150.

In debugging array is split into 1…99 and 100…199 etc i believe thats why data is not shown. Can you help how to bind large array with lists?

  > <div class="list list-inset">
>       <div class="item  item-icon-left " ng-repeat="store in param.stores" class="">
>         <i class="icon ion-ios-pricetag-outline " style="color:#ef4731"></i>
>           <b>{{store}}</b>
>       </div>
>     </div>

Can you define ‘not working’?
What is happending that you don’t expect?
What do you expect to actually happen?

The little code you posted looks fine.

Can you explain this a bit more? “In debugging”?

Thanks @sujan12 for replying, sorry it was my mistake. Issue was not long array list, but it was repeating values.
Fixed it by using track by $index

1 Like