Reports

Create the content for a report.

Reports 1:

Name (Report)

Runtime

Configuration name

Tables

Text fields

HTML container

Special feature of text fields and table columns

The Value option is available in text fields and table columns. 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 value is located in the table column under the Values item.

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>