Wrong display of a loaded text from DataColumn
Posted: Tue Nov 29, 2022 2:32 pm
Hello,
I am using the text editor QuillJs to design some part of my report. The result is saved in database. Here is an example of the produced HTML :
When I want to display it alone in a text component of my report, the generated report is ok. Here is the content of the Expression field:
But if I want to change the font or the size of it, like this:
Or even only add some text like :
Then the generated report is wrong. In the first case I expect my report to display "Reda" in bold size 24 but nothing is displayed.
And in the second case, I expect my report to display "Welcome Reda" but it only displays "Welcome ".
Can you help me please ?
I am using the text editor QuillJs to design some part of my report. The result is saved in database. Here is an example of the produced HTML :
Code: Select all
<div><strong>Reda</strong></div>
Code: Select all
{User.name}
Code: Select all
<font size="24">{User.name}</font>
Code: Select all
Welcome {User.name}
And in the second case, I expect my report to display "Welcome Reda" but it only displays "Welcome ".
Can you help me please ?