I have a multiple select field that is shown on an...
# advancedpdf
p
I have a multiple select field that is shown on an email. How can I add a line break to split the items up so if there are multiple items they are not on 1 line?
c
is it showing a string joined with "\u0005"? Multi-selects have this weird break in them so you'd have to split it out
p
nope. just showing each option as 1 string. For example - if the user selected Option 1, Option 2 and Option 3 - the email is printing it as Option 1. Option 2. Option 3. What I really want is: • Option 1 • Option 2 • Option 3
e
do a split on the field on "\u0005" and then redraw the options using <ul><li></li></ul> constructs