Hello. I am wondering if I could get help understanding the functioning of the list widget.
Here was my aim tonight:
“I want the set of all tiddlers who do not have a field where standalone equals true who are tagging other tiddlers. Then I want to list the tiddlers they tag on their tiddler.”
I think I have achieved this:
<$list filter="[all[current]!contains:standalone[true]tagging[]count[]!match[0]]" variable='moo'>
<div class='grid1_1_1'>
<$list filter="[all[current]tagging[]]">
<div>
<$link to={{!!title}}><$image source={{!!my_thumb}} /></$link>
<$link to={{!!title}}><b><$view field="title"/></b></$link>
</div>
</$list>
</div>
</$list>
I am wondering why adding the unused variable attribute on the first list tag makes this function as expected (i.e., recursively).