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.
use [ngClass]/[ngStyle] instead of rowStyleClass it may help you as below: