{{!!FieldName1}} {{!!FieldName2}} {{!!FieldName3}}
shows the values from these fields on one line.
{{!!Fieldname1}} <br>
{{!!Fieldname2}} <br>
{{!!Fieldname3}} <br>
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=<<fieldName>>/>
</$list>
\end
\define listFieldBR(prefix:"")
<$list filter="[fields[]prefix[$prefix$]sort[title]]" variable="fieldName">
<$view field=<<fieldName>>/><br>
</$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?
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/75b955c5-5c04-468c-b8d9-5335c83e429bn%40googlegroups.com.