Question

Custom HTML automatic value addition

  • 15 April 2024
  • 1 reply
  • 27 views

Badge +2

Hi,

if a similar issue has already appeared on the forum, please redirect me.
I'm trying to generate an automatic report in HtmlReportGenerator. I mainly use CustomHTML to prepare the exact shape of the data table. When I manually create a table and fill it with values from the flow, I have no values in output (the table displays empty records). What am I doing wrong?

for example:


     <tr>
         <td>1</td>
         <td><a href="https://geoportal.gov.pl">INDICATIVE LRT/BRT VARIANTS (SR CPK, SFP MODEL)</td>
         <td>DATE</td>
         <td>@Value(INDICATIVE_VARIANTS)</td>
         <td>@Value(INDICATIVE_VARIANTS2)</td>
         <td>NON</td>
     </tr>


1 reply

Userlevel 4
Badge +18

I don't know

Seems to be working:

<!DOCTYPE html>
<html>
<head>
<title>Report</title>
<meta charset="UTF-8">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<tr>
<td>1</td>
<td><a href="https://geoportal.gov.pl">INDICATIVE LRT/BRT VARIANTS (SR CPK, SFP MODEL)</td>
<td>DATE</td>
<td>Hi</td>
<td>filipovitz</td>
<td>NON</td>
</tr>
</body>
</html>

 

 

Reply