G'day
The code below renders a multi tabbed 'box'.
Each tab is labelled with the name of a tiddler.
I would like to label each tab with the name of a tag and list the
tiddler titles under each tab.
My feeble attempt (also below) did not work.
Any Suggestions?
Original Code
----------------------------------------
<<forEachTiddler
where
'tiddler.tags.contains("SQL")'
sortBy
'tiddler.title.toUpperCase()'
write '" [["+tiddler.title+" ]] \"view ["+tiddler.title+"]
\" [["+tiddler.title+"]] "'
begin '"<<tabs txtMyAutoTab "'
end '">"+">"'
none '"//No tiddler tagged with \"glossar\"//"'
>>
MY attempt which does not work
------------------------------
<<forEachTiddler
sortBy
'tiddler.title.toUpperCase()'
write '" [["+tiddler.tag+" ]] \"view ["+tiddler.tag+"]
\" [["+tiddler.tag+"]] "'
begin '"<<tabs txtMyAutoTab "'
end '">"+">"'
none '"//No tiddler tagged with \"glossar\"//"'
>>
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.