I have a json object. It is not ordered in ascending order.
$scope.myData = { "MAX" : "some value", "Forms" : "some value", "Grids And Tables" : "some value", "Navigation" : "some value", "Services & APIs" : "some value" }
I used ng-repeat to show in my html template. I got the result, but the order has changed in ascending order.
Forms Grids And Tables MAX Navigation Services & APIs
How to prevent angular js from automatically ordering?
Check link
angularjs order ng-repeat
Saith
source share