Reputation: 3660
How to change the background color for the whole screen (window) on which the report is displayed at JasperReports Server rather than changing the background color for the report with JasperReports?
Upvotes: 0
Views: 155
Reputation: 36
For changing the color of the Entire Window
you can edit the CSS
file in the jasperserver/themes
like this
#reportViewFrame .content .body{
background:#f6f6f6; //any color you want
}
.jrPage > tbody {
background: none repeat scroll 0 0 #f6f6f6; // any color you want
}
Upvotes: 2