On Monday, April 30, 2018 at 11:19:07 PM UTC+7, Rene wrote: > > Yeah, removing "!tag[quote]" makes it work now. Unfortunately by clicking > on one pill, all pills with the same text open at once. That is a pretty > mess, but seems to be the way these pills work. Is there another solution > when clicking on a tag, that the entries for that tag show up once? > > > Rene,
Try doing it this way: Make a tiddler, call it, say: Table of Quotes <table> <tr> <th>author</th> <th>quote</th> <th>tags</th> </tr> <$list filter="[tag[quote]sort[author]]" template="Table of Quotes template"> </$list> </table> Notice that the outer list calls a display template for the inner list. Make another tiddler, call it: Table of Quotes template <tr> <td><$view field="author"/></td> <td><$view field="quote"/></td> <td> <$list filter="[all[current]tags[]!title[quote]]" template="$:/core/ui/ TagTemplate"/> </td> </tr> I have no idea WHY it works, but this is how I solved a similar issue of - clicking on one tag pill opens the dropdown menu of all the other tag pills with the same name. -- 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 https://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/c7f1dbb1-a892-4e09-ab1e-48802f6f7ad2%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

