I have a 3 line data selection, using
<br />
as the concatenation string.
When I use the use the data in my template, the
<br>
is displayed rather than interpreted as a new line. I’ve tried every variation I can think of, but nothing works.
Probably something ridiculously simple…
Phil
2
Is your field being displayed inside of a <PRE> element? That element displays its contents as-is, with no interpretation of the embedded HTML tokens.
No , it is inside a div, and Connect has added a span over which I have no control.
Here is the code from the source tab -
<div anchor="page_media_0"
style="position: absolute; overflow: hidden; box-sizing: border-box; line-height: 11pt; font-family: "Courier New"; font-size: 12pt; width: 1035px; height: 69px; top: 26.9833px; left: -0.01666670000000181px;" offset-x="37.783332537060545" offset-y="64.78329923706055">
@ColumnHeadings@
</div>
from the html preview
<div class="ol_drag_element" style='left: -0.01px; top: 26.98px; width: 1035px; height: 69px; line-height: 11pt; overflow: hidden; font-family: "Courier New"; font-size: 12pt; position: absolute; box-sizing: border-box;' offset-y="64.78329923706055" offset-x="37.783332537060545" anchor="page_media_0">
<span>Title Full Odds Total Label Bun Bench Bench <br/>Issue Buns Siz Siz Full Odds <br/> Buns </span><br>
</div>
Phil
4
The only other thing I can think of is that your Script is set to insert the contents of the field as Text instead of as HTML:
Phil
Thank you very much, you have solved the riddle!
The resemblance is uncanny.