How to change background color of a row based on a value in column 'C' in Excel export HTML5?
How to change background color of a row based on a value in column 'C' in Excel export HTML5?
sandeep_nalla
Posts: 1Questions: 1Answers: 0
How to change background color of a row based on a value in column 'C' in Excel export HTML5?
$('row c[r^="C"]', sheet).each( function () {
if($(this).text() == 'TOTAL'){
$(this).attr( 's', '20' );
}
});
This will change the bg color of that cell but how to change the entire row color?
This discussion has been closed.
Answers
Hi @sandeep_nalla ,
This thread will sort you out, it's addressing the same issue.
Cheers,
Colin