In PrimeNG how to apply conditional coloring to rows in tree table component

1.7k Views Asked by At

I am new to PrimeNG, and using a tree table component in my angular 2 application.

I want to apply the entire row (tr) with different style based on conditions. I tried ngStyle and ngClass. But it is not working.

<p:treetable id="coloring" var="car" [value]="{treeTableController}"
[ngStyle] ="{{car.year le 1975 ? 'colored' : null}}">
<p:columnheaderText="Year">{car.year}</p:column>
<p:columnheaderText="Name">{car.name}</p:column>
</p:treetable>

Any help is highly appreciated.

1

There are 1 best solutions below

0
On

use [ngClass]/[ngStyle] instead of rowStyleClass it may help you as below:

[ngStyle]="{'height': splitterHeight + 'px'}"

[ngClass]="mode == 'multiple' ? 'multipleEditorModal' : 'NoClass'"