I'm getting a json from server side in following order:
[{
"outlet_id": 83
"outlet_name": "My Outlet"
"address": "My Outlet"
"shop_number": "123"
"street": "123"
"building_no": "52"
"key_location": "Location 123"
"mohallah": "Mohalla 123"
"landline": "1235869"
"owner_name": "Owner"
"Manufecture": "A"
"BrandName": "B"
"Variant": "C"
"BRANDDiscription": "D"
"SIZE": "E"
"Variant/Promotions": null
"Segment": null
}]
but when I display it, it disturbs order, I'm using ng-repeat like:
<td ng-repeat="(key, value) in vm.outletFieldAttrsList[0]">{{value}}</td>
order of attributes is not same as order in JSON returned by server, anyone there who cana help?