You could make something like that using some nested list widgets. TW5 
makes a lot of things much easier.

I will put this in a macro in a bit, but for now this works. It doesn't 
have any of the nice ui things that Eric made but it gives a grid. You can 
just paste it into tiddlywiki.com to see what it does.


<$set name=OuterTagList filter='[all[]tags[]limit[10]]'>
<$set name=InnerTagList filter='[all[]tags[]limit[10]]'>
<table>
<tr>
<td></td>
<$list filter=<<InnerTagList>>>
<td><<currentTiddler>></td>
</$list>
</tr>
<$list filter=<<OuterTagList>> variable=OuterTag>
<tr>
<td>
<<OuterTag>>
</td>
<$list filter=<<InnerTagList>> variable=InnerTag>
<td><$count filter='[tag<OuterTag>tag<InnerTag>]'/></td>
</$list>
</tr>
</$list>
</table>
</$set>


-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/eb0b2fc0-433d-4103-9cd9-1ef3eb36903e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to