Hi Bob,

To learn more about the syntax for {{{ [filter[]] }}} , try searching for 
"{{{" on tiddlywiki.com...

   - Transclusion in WikiText 
   <http://tiddlywiki.com/#Transclusion%20in%20WikiText>
   - Transclusion and Substitution 
   <http://tiddlywiki.com/#Transclusion%20and%20Substitution>
   
...both are quite essential to creating the kind of stuff you desire.
Also, the first example in the SelectWidget 
<http://tiddlywiki.com/#SelectWidget> documentation
shows you how to populate a select via the ListWidget 
<http://tiddlywiki.com/#ListWidget> based on a filter.

As for...

You can also use <<currentTiddler>> instead of the view widget.


Be aware that using <<currentTiddler>>
works well in this context, but elsewhere it might
wikify / transclude <http://tiddlywiki.com/#Transclusion%20in%20WikiText> 
whatever 
*currentTiddler* holds,
e.g. if it is a *WikiWord* it will become a link.

For example, try this on tiddlywiki.com and note how
some parts of results become links while others don't:

<$list filter="[tag[TableOfContents]]">

<<currentTiddler>>
</$list>

Same with...

<$list filter="[tag[TableOfContents]]">

{{!!title}}
</$list>

Now try that again using this inside your list...

<$list filter="[tag[TableOfContents]]">

<$view field="title"/>
</$list>

or...

<$list filter="[tag[TableOfContents]]">

<$text text={{!!title}}/>
</$list>

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 [email protected].
To post to this group, send email to [email protected].
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/ac96d21b-72a8-4187-af6b-0eb1974fb078%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to