validateAll: true. The only thing I was able to come up with was the awkward snippet like below (yes, I know that prefix[true] is not the exact match for true):<$list filter="[type[application/x-tiddler-dictionary]]" variable=xxx>
<$list filter="[<xxx>getindex[validateAll]prefix[true]]" >
<<xxx>>
</$list>
<br/>
</$list>[field:##validateAll[true]], or a special operator dedicated to dictionaries...<$list filter="[type[application/x-tiddler-dictionary]]" variable=dataTid>
<$list filter="[<dataTid>getindex[validateAll]]">
<$reveal type="match" text="true" stateTitle=<<dataTid>> stateIndex="validateAll">
<<dataTid>>
</$reveal>
</$list>
<br/>
</$list>\define make-link() <$link to="$(display)$">$(display)$</$link><br>
<$list filter="[type[application/x-tiddler-dictionary]]" variable=dataTid>
<$set name="display" value=<<dataTid>>>
<$set name="data" tiddler=<<dataTid>> index="validateAll">
<$list filter="[<data>] -[[true]]" emptyMessage=<<make-link>>>
</$list>
</$set>
</$set>
</$list>Make link is worth being a global macro.
Thanks for sharing
Tony