Hi all
I would like to create a very simple tool where I select a topic from a dropdown list of topics and see a filterable list of the tiddlers tagged with that topic. I created the select widget okay, but am not sure how to add the list filter to it. Here is as far as I got. As you can probably see, the select widget would produce a list of tiddlers tagged topic. For example, interpersonal, financial, etc. The selected topic would then go into $:/generated-list-demo-state. So I thought, why not create a filterable list widget based on turning the contents of $:/generated-list-demo-state into a tag? But I am not sure how to do that. Any help?
<$select tiddler='$:/generated-list-demo-state'>
<$list filter='[tag[topic]!is[system]]'>
<option><$view field='title'/></option>
</$list>
</$select>
<$tiddler tiddler={{$:/generated-list-demo-state}}>
<$transclude mode='block'/>
</$tiddler>
<<list-search
"[tag[<$:/generated-list-demo-state>]!is[system]!is[shadow]sort[title]]"
"search:title"
"$:/temp/list-search-sidebar-system-and-shadows"
"$:/_aa/aa/list-item-view-glinks">>