OK (trying to answer my own question) this should work but for some reason 
it displays the contents of the macro instead of executing the macro. Could 
someone help me with my syntax?

Copy the below into a tiddler to see what I mean

\define returnList(tiddlerName, fieldName)<$list 
filter="[list[$tiddlerName$!!$fieldName$]]">[[<$view 
field="title"/>]] </$list>

\define returnAllLists(fieldName)<$list 
filter="[has[$fieldName$]]"><$macrocall $name="returnList" 
tiddlerName=<<currentTiddler>> fieldName="$fieldName$" /></$list>

\define listAllFieldItems(fieldName, itemsList)
    <ul>
    <$list filter="$itemsList$">
        <li>
            <<currentTiddler>>
        </li>
    </$list>
    </ul>
\end

<$macrocall $name="listAllFieldItems" 
        fieldName="list"
        itemsList=<<returnAllLists "list">> 
/>

-- 
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 post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b60b2726-28c3-4bf1-97b2-34221250fef7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to