Skip to main content
Question

HTMLReportGenerator add checkboxes

  • March 8, 2020
  • 2 replies
  • 20 views

Forum|alt.badge.img
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!

 

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

warrendev
Enthusiast
Forum|alt.badge.img+26
  • Enthusiast
  • March 9, 2020

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


Forum|alt.badge.img

Thanks! That worked great!