<tbody>
<tr *ngFor="let item of _studentList let i=index">
<td align='center'>{{ i }}--{{item.rollno}}</td>
<td align='center'>{{item.sname}}</td>
<td align='center'>{{item.status!='NOT'?item.status:''}}</td>
<td align='center'>
<input type='checkbox' style='height:15px; width:15px;' [checked]="item.status=='P'" (change)="onChangePA(item)" ></td>
<td align='center'>
<a><img src='../images/d.jpg' height='30' width='30' /> </a>
</td>
</tr>
</tbody>
When ever i change the checkbox I will do API request, until i get the response I want to either disable that row or showing loading on row
how to do it?
I want only one loading not all. how to do it?

