------------------------------------Component.Html----------------
-----------------------------------.Compoent.ts---------------------------
----------------------------.Component.css---------------------------------
<p-dataTable id="Tbl" [rowStyleClass]="FunctionName"> </p-dataTable>
-----------------------------------.Compoent.ts---------------------------
FunctionName(rowData) {
return rowData['Status'] == "COMPLETE" ? 'disabled-account-row' : '';
}
----------------------------.Component.css---------------------------------
.disabled-account-row {
/* TODO: first try this without '!important', but you might need it */
background: lightgreen !important;
}
0 Comments