Hello everyone at SO:
On March 18, 2014, I encountered a situation while trying to use ng-repeat. The elements inside the array, retrieved from a Json string, seem to be changing their original order.
To clarify, the initial variables in the array pertain to order_id and person name, whereas the later ones relate to credit information.
The information seems to be jumbled up, perhaps sorted alphabetically, although I cannot be certain.
There doesn't appear to be anything unusual in the code:
<li ng-repeat="(variable, value) in records" >
<a href="">{{variable}}: </a>
<a href="">{{value}}</a>
</li>
Any suggestions or references?
Thank you in advance! Chris;