closed
Public

I’ve added a table (table_1) and a label (TextBox_1).

On Page Loaded the first cell in the first row of the table should be filled with the text from TextBox_1.

The content of TextBox_1 is “TextnMore text”.

The manual line break is ignored, and the content of the cell in the table is “TextnMore text” and not

“Text

More text”.

Can you find a solution for this?

2 answers

The “n” in TextBox will be escaped when you retrive its value in simulation.

You can use another table (without header, only one cell) to take the TextBox’s job, you can retrive its value like this: “[Table_2.cellValues][1][1]”, it supports “n” in value.

#1

Yes, that works – thanks!

#2

This question is now closed