{{!!FieldName1}} {{!!FieldName2}} {{!!FieldName3}}
shows the values from these fields on one line.
{{!!Fieldname1}}
{{!!Fieldname2}}
{{!!Fieldname3}}
Displays the values of these fields among eachother. But if the field {{!!FieldName2}} contains no value, a blank line will be displayed.
\define listField(prefix:"")
<$list filter="[fields[]prefix[$prefix$]sort[title]]" variable=“fieldName”>
<$view field=<>/>
</$list>
\end
\define listFieldBR(prefix:"")
<$list filter="[fields[]prefix[$prefix$]sort[title]]" variable=“fieldName”>
<$view field=<>/>
</$list>
\end
<<listField"A">> <<listFieldBR"A">>
<<listFieldBR"B">>
<<listFieldBR"B">>
<<listFieldBR"B">>
<<listFieldBR"B">>
<<listField"C">>
Is also not working.
How can I prevent an empty line if there is no value, and still ensure that values are displayed behind or below each other?