How to preserve the wider whitespace in the HtmlTextBox elements text
Environment
Product | Progress® Telerik® Reporting |
Description
The whitespace in the Html elements, for example, the paragraph <p>
element of the HtmlTextBox is reduced to a single space. This article explains how you may keep
the whole whitespace.
Suggested Workarounds
You may use the
(non-breaking space) extended HTML character. For example, you may replace the occurrence of two spaces with
through
the built-in Replace Text Function.
Here is a sample Expression :
=Replace(Fields.Value,' ',' ')