I'm trying to add a dynamic id to each row like this :
<ngx-datatable-column *ngFor="let col of cols" [name]="col.field" [resizeable]="true" [sortable]="true"
[maxWidth]="col.width[1]" [minWidth]="col.width[0]" headerClass="list-header"
cellClass="column-separator listview-table-column">
<ng-template let-sort="sortFn" let-column="column" ngx-datatable-header-template>
<div id="{{id.row}}" style="width: 100%" fxLayout="row" fxLayoutAlign="center center" fxLayoutGap="5px"
class="header-form-field">
This id was generated in each column for each row and that's not what i want, i want just to associate an id for each row, how to achieve this plz ?
Thanks