Hi Tobias, My use case is little different. I have the below code. I have it as a viewtemplate. For example , I have a tag 'Chapter 1'. Under 'Chapter 1' I have tag 'Topic 1'. So whenever I click on Topic 1, I want the table to load all the tiddlers of 'Chapter 1' tag as well as tiddlers of 'Topic 1'. Can you please help me in this. <table > <tr > <td style="width:35%";> <$scrollable class='tc-scrollable-demo'> <$list filter = "[is[current]tagging[]]"> <span class="textbox2"> <$link><$view field="title"/></$link> <div style="max-height:5px; overflow: hidden;"> <br> <$transclude/> </div> </span> </$list> </$scrollable> </td> <td> {{!!text}} </td> </tr> </table>
Thanks! Shash On Tuesday, September 22, 2015 at 10:31:23 PM UTC+5:30, Tobias Beer wrote: > > Hi Shash, > > This... > > <$list filter="[is[current]tagging[]sort[listing]]"> >> > > ...does not give you a tiddler's tags, but this does: > > <<list-links [is[current]tags[]]>> > > ...and then this gets you the tag parents of the first level parent tags: > > <<list-links [is[current]tags[]tags[]]>> > > ...and if you want both, first level and second level parent tags in one > list, you'd be doing: > > <<list-links [is[current]tags[]][is[current]tags[]tags[]]>> > > Eventually, if you also wanted to go down the tagging tree, > to "child tiddlers" tagging to the current one, > you'd be replacing the tags[] <http://tiddlywiki.com/#tags%20Operator> > filter operator with > the tagging[] <http://tiddlywiki.com/#tagging%20Operator> filter operator > in the examples above. > > Best wishes, > > — tb > -- 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 http://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/c06301de-3ba6-4a07-854a-5b51432371a2%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.