Question

HTMLReportGenerator add checkboxes


Badge
Hey everyone, I am trying to create a report that contains a list of errors. I would like to add checkboxes next to each error as an easy way to keep up to date on what errors have been addressed. Is there a way to do this?

 

I have looked into the Custom HTML, but I'm a little confused on how the ReportGenerator adds the attribute to the HTML statements.

Any help would be greatly appreciated. Thanks!

 


2 replies

Badge +16

One way that I add customization for the html report is by modifying the content in the html_content attribute. I use a python caller to add javascript and css.

 

0684Q00000ArKfkQAF.png

 

Here is a simple way to go about it using the string replacer. I just create an attribute that will be replaced with the html for creating the checkbox.

<input type="checkbox">

0684Q00000ArKiwQAF.png

 

0684Q00000ArKkHQAV.png

checkbox.fmw

Badge

Thanks! That worked great!

Reply