Reports
Create the content for a report.

Name (Report)
- Provides a structure for configuring the report content.
Runtime
- Connection to a runtime for the creation process.
Configuration name
- Connection to a report frame.
Tables
- Creates a table based on the data of a symbol. The corresponding columns must be entered for this purpose. Only then will they be displayed.
Text fields
- Creates an entry in the report based on a symbol.
HTML container
- Adds an HTML object to the report.
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 |
![]() | 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>