Hello, I don't understand how to add a class on a row ?
I have the latest version
This is my code :
</ngx-datatable-column>
<!--Colonne --Titre---->
<ngx-datatable-column name="prenom" [width]="50">
<ng-template let-sort="sortFn" let-column="column" ngx-datatable-header-template><span (click)="sort()">Pr茅nom</span></ng-template>
<ng-template let-row="row" ngx-datatable-cell-template><span title="{{row.profil.prenom}}">{{row.profil.prenom}}</span></ng-template>
</ngx-datatable-column>
<!--Colonne --Fonctions---->
<ngx-datatable-column name="fonction" [width]="100">
<ng-template let-sort="sortFn" let-column="column" ngx-datatable-header-template><span (click)="sort()">Fonction</span></ng-template>
<ng-template let-row="row" ngx-datatable-cell-template><span title="{{row.profil.fonction}}">{{row.profil.fonction}}</span></ng-template>
</ngx-datatable-column>
<!--Colonne --Fonctions---->
<ngx-datatable-column name="etat" [width]="100">
<ng-template let-sort="sortFn" let-column="column" ngx-datatable-header-template><span (click)="sort()">Etat</span></ng-template>
<ng-template let-row="row" ngx-datatable-cell-template><span title=""></span></ng-template>
</ngx-datatable-column>
</ngx-datatable>
thx for your help
The above GitHub link is giving 404 error.
I am also stuck on the same issue, I don't know how to add custom css to each row of the table.
Most helpful comment
The above GitHub link is giving 404 error.
I am also stuck on the same issue, I don't know how to add custom css to each row of the table.