I am a newbie to AngularJS and HTML, sorry if these questions are very basic . I am trying to create a HTML table using ng-repeat by parsing an JS array. The sample data is given below
sample record:
data:{"acceptable":12,"run2":{"avg":0,"percent":0},"run1": {"avg":"9.337","percent":"10.401"},"trname":"ESSCreateIncident","target":8},
ng-repeat="row in data" {{row.trname}} {{row.target}} {{row.acceptable}} {{row.count}}
There could be multiple runs like run3, run4 etc, which has multiple variables in it.