Preserve white space between words
We have a requirement to display spaces between words on a read-only table as follows:
Title
Pega Support Center
etc.
I created a custom control and deselected the "Omit extra spaces" option, but that change didn't achieve the expected results.
I was able to resolve the issue by configuring the control to wrap the property text in pre tags. HTML source: <%tools.appendString("<pre>" + tools.getActive().getStringValue() + "</pre>");%> Browsers will remove extra spaces from text unless denoted by etc. Is there an OOTB control/configuration that can be implemented to achieve the required result?