I have a custom field with type "textarea" and the...
# advancedpdf
c
I have a custom field with type "textarea" and the
${item.custcol}
breaks when the user adds a line break in the text area. Is there a way around this?
d
what is the output of the
custcol
? you could potentially split by the line break and join with
<br/>
tags
c
Thanks, @David B. I ended up solving with a
?replace("<br />", "")
The hard part was getting a good look at the actual text string NS was trying to deal with. Opening up the UI sublist field in Dev Tools and seeing the
<br />
stored directly in the textarea tipped me off.