Export Log File - HTML- Change Color

Hello,

When the log file is exported as html.. I would like to change the color of the "Action Group" rows to denote that what follows is a group within that "Action Group".

Is this possible?

You can customize how the exported HTML is generated by modifying the ‘ConvertLogToHTML.xsl’ stylesheet in the [Automise_Install_Dir]\StyleSheets directory.

Regards,
Paul.

 I see that the following controls the class of the row and thus the color.. White status is the ActionGroup row? For Example if there are 4 actions within an Action Group, I just want to assign the row of the ActionGroup Header a different class and keep the rest the same so its more easy readable.


ErrorRow
ErrorIgnoredRow
SkippedRow
RunningRow
NormalRow

EDIT: I can't paste xls/html code here.. What I mean was the place where it says

  test="@status='6'">ErrorRow

test="@status='7'">ErrorIgnoredRow

test="@status='4'">SkippedRow

test="@status='4'">SkippedRow

Hi

I have attached an example of how to do this, you will most likely want to change the colour of the Action Group row (I made it nice and bright for the example). Just go to the style section and update the background colour for the 'ActionGroupRow' class.

You can use this without overwriting the existing stylesheet by using the 'Use alternate template file' option on the Export Log action.

Regards,

Steve

HighlighActionGroups.xsl (11.1 KB)

Works great! Thanks

I could’t figure out the actiontype=‘TGroupAction’ part…