, - :
<div ng-controller="MyCtrl">
<div> I want to display in below table structure</div><br/>
<div ng-repeat="item in items">
<div class="row" ng-if="{$index%3==0}">
<div ng-repeat="x in item" class="col-xs-4">{{x.IDTYPE}}</div>
</div>
</div>
</div>
var myApp = angular.module('myApp', []);
function MyCtrl($scope) {
$scope.items = [{
"b": {
"PRIMKEY": 96598.0,
"IDTYPE": "userlogin",
"USERID": "yes"
},
"c": {
"PRIMKEY": 106974.0,
"IDTYPE": "user_access",
"USERID": "no"
},
"d": {
"PRIMKEY": 107009.0,
"IDTYPE": "Tel_ty",
"USERID": "no"
},
"e": {
"PRIMKEY": 60130.0,
"IDTYPE": "new_user",
"USERID": "no"
},
"f": {
"PRIMKEY": 90885.0,
"IDTYPE": "gen_id",
"USERID": "001_0_2361"
},
"g": null,
"h": {
"PRIMKEY": 106996.0,
"IDTYPE": "uyy_id",
"USERID": "753"
},
"i": {
"PRIMKEY": 106993.0,
"IDTYPE": "qwe_id",
"USERID": "585"
},
"j": {
"PRIMKEY": 104831.0,
"IDTYPE": "phone_login",
"USERID": "122324"
},
"k": {
"PRIMKEY": 85476.0,
"IDTYPE": "windows_id",
"USERID": "qwertr"
}
}];
}
fiddle.