I am trying to construct a vertical table from JSON data.However my problem is that I have 3 columns,First column is the name of that column.The remaining two columns have to be filled by 2 different arrays.
In this,
Vertical ng-repeat question,using same array all columns are being populated,however i want to populate each column with different arrays
This is my JSON
{
"result": {
"college1": [
{
"lyr": "0",
"rating": "",
"code": "",
"nirf": "0",
"mhrd": "0",
"outlook": "0",
"tiem": "0",
"career": "0",
"naac": "0",
"fees": "50000",
"pla": "0",
"image": "king.jpg"
}
],
"college2": [
{
"lyr": "0",
"rating": "",
"code": "",
"nirf": "0",
"mhrd": "0",
"outlook": "0",
"tiem": "0",
"career": "0",
"naac": "0",
"fees": "25000",
"pla": "0",
"image": "king.jpg"
}
]
}
}
Thanks in advance