Hello,
I am currently using a List widget and within it, I am using a tag widget to display the values in the list.
With the combination of both widget, the output looks like:
Apple Orange Pear
Is there a way for the output to include a & between each list item, so that the output looks like:
Apple & Orange & Pear
Any suggestions? Thank you!
something like this :
enclose the tag with a preceding expression inside a span element (html element from toolbox)
expression is "" for first element of row, and " & " for all others
Thank you so much! This worked great!