In my angular app I\'m trying to display JSON data in a table. The data looks like this:
$scope.data = { \"EVENT NAME\":\"Free Event\", \"ORDER ID
You can achieve it like this
Working Demo
In the scope define a method like as shown
$scope.notSorted = function(obj){ if (!obj) { return []; } return Object.keys(obj); }
and in html like as shown below
html
{{key}} {{value}}
Original Article: ng-repeat with no sort? How?