Reports

Create the content for a report.

Reports 1:

Name (Report)

Runtime

Configuration name

Tables

Text fields

HTML container

Special feature of the text fields

The Value option is available in text fields. In the Value dialog, you can create your own implementations of HTML in connection with JavaScript and CSS. The uploaded JavaScript and CSS files can also be used for this purpose.

The placeholder {value} can be used to integrate the value of the external symbol directly.

{value}

Value of the symbol

Reports 2:

There must be no spaces between the curly bracket and "value".

Sample:

<p class="users"></p>
<script>
    let usersElement = document.querySelector('.users');
    let value = {value};
    usersElement ? usersElement.innerHTML = JSON.stringify(value) : console.warn("HTML object not found");
</script>
<style>
    .users {
        color: green;
    }
</style>