{
"SolutionsDetail": [
{
"SolutionId": 658,
"name": "dk",
"id": 1568377327000,
"groups": [
{
"GroupId": 1,
"requestDetails": [
{
"ReqId": 2331,
},
]
}
]
}
]
}
tried from my side :
<ng-container *ngFor="let groupRowData of groups ;let $index=index">
<tr>
<td> {{ grouprowdata.GroupId }}</td>
<td>
<tr *ngfor="let requestDetail of groupRowdata.RequestDetails"> {{ requestDetail.reqId}}</tr>
</td>
</tr>
First column will have my group and second will have my request details based on group(as per json structure). can someone help me on this?
