
Announcements
I have a HTML Text control in a form (set to DisplayMode.View) that is pulling it's value from a multi-line text column in a SharePoint list (via a Gallery). When it displays the value (using PlainText) it does not honor the record's carriage returns (ie multiple lines).
So, when the value in the list looks like:
Line one
Line two
Line three
The HTML Text control shows it as:
Line one Line two Line three
Does anyone know of a property or workaround to get it to display properly?
Thanks.
I'm not sure there is an easier way to do this, but you can substitute in a <BR> Tag if you are using an HTML box.
Substitute(PlainText(TextInput3.Text),Char(10),"<br/>")
A work around until someone smarter pops in.
Thanks,
Nicky