I am using PrimeNG DataTable with Angular and the rows are inline editable like the example in documentation[https://www.primefaces.org/primeng/#/table/edit] and I try to except one cell form this editable rows but the problem I use *ngFor to view data in TD element
My HTML :
<ng-template pTemplate="body" let-rowData let-editing="editing" let-ri="rowIndex" let-columns="columns">
<tr [pSelectableRow]="rowData" [pEditableRow]="rowData">
<ng-container>
<td class="ui-resizable-column" *ngFor="let col of columns">
<p-cellEditor>
<ng-template pTemplate="input">
<input pInputText type="text" [(ngModel)]="rowData[col.field]"style="width:100%"/>
</ng-template>
<ng-template pTemplate="output">
{{ rowData[col.field] }}
</ng-template>
</p-cellEditor>
</td>
</ng-container>
</tr>
</ng-template>
In order to envision the required see this image

Thanks in advance for any help