-
1. Re: Format of the report.html output for scheduled reports
hadyn.dawson Jan 8, 2012 9:47 PM (in response to blaine67us)On your Application Server (where Outbound is running) go to C:\Program Files (x86)\LANDesk\LANDesk Applications and look at the files ReportSmall.css, ReportMedium.css and ReportLarge.css.
Depending on your report style (Small, Medium or Large) you need to edit one of these CSS files to alter the output of emailed reports. If you want to view these reports in Console in the format you're trying to send in copy those CSS files tpo your local COnsole install directory.
I've had a play with these and got grid lines, font, colours and whole heap of other things working well. I could never figure out how to get an image to send embedded in the report, however I can get it to appear in Console.
Hope this helps.
Cheers,
Hadyn
-
2. Re: Format of the report.html output for scheduled reports
blaine67us Jan 9, 2012 5:58 AM (in response to hadyn.dawson)Thanks for the reply Hadyn.
Just for curiosity sake, and the fact that I'm a novice at editing stylesheets.
How did you get the grid lines ?
That is originally what I was after.
Do you have any examples ?
Thanks again for the reply....
-
3. Re: Format of the report.html output for scheduled reports
hadyn.dawson Jan 9, 2012 7:25 PM (in response to blaine67us)Hi Brian,
The specific elemnt you need to edit is-
td {word-wrap:break-word;
vertical-align:top;}And you can add in border settings. It's been a while since I did it but this page may help - http://www.tizag.com/cssT/border.php - I think from memory I did something like
td {word-wrap:break-word;
vertical-align:top;
border-style:solid;}
which gave me a full grid style layout. Have a play, and google "CSS stylesheet table" for more info.
Cheers,
Hadyn
-
4. Re: Format of the report.html output for scheduled reports
blaine67us Jan 10, 2012 6:13 AM (in response to hadyn.dawson)Thanks Hadyn, that's what I needed......