wolfgang
unread,May 29, 2008, 5:15:52 PM5/29/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to TiddlyWiki
Hi skye,
With the help of others here I once created a FET call, which looks
for a number of tags AND displays the content of a custom field like
'assigned' - but which I named 'theme' instead:
<<forEachTiddler where
'tiddler.tags.containsAny(["team","regional","stationary","large"])'
sortBy 'tiddler.title' descending
write
'(index < 40) ? "|"+(index+1)+"|[["+tiddler.title+"]]|"+tiddler.tags
+"|"+tiddler.text.length+"|"+store.getValue(tiddler,"theme")+"|\n" :
""'
begin '"|!#|!Teams|!Tags|!Byte|!Themes|\n"'
end 'count+" Tiddlers found\n"'
none '"No Tiddlers found\n"'>>
So I reckon a nested search as you describe should be possible somehow
(with some trial and fail).
Regards,
W.