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_nallasandeep_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?

Answers

This discussion has been closed.