This topic is locked
[SOLVED]

 Change row background color in phprunner 7 not working at Printer Friendly Page

12/4/2013 4:15:52 AM
PHPRunner General questions
J
jackolantern author

Why change row background color in phprunner 7 is no working in printer friendly page.

Code below is working in list page.



//printer friendly page

//print page after record processed

if ($data['ExpiredInDays'])

{

if ($data['ExpiredInDays']<=365) $record["css"]='background:green; color:white;WHITE-SPACE: nowrap;';

if ($data['ExpiredInDays']<=180) $record["css"]='background:yellow; color:black;WHITE-SPACE: nowrap;';

if ($data['ExpiredInDays']<=90) $record["css"]='background:red; color:white;WHITE-SPACE: nowrap;';

// if ($data['ExpiredInDays']<=0) $record["css"]='background:grey; color:white;WHITE-SPACE: nowrap;';

}