If I understand you right, you want the displayed titles to be links as opposed to just textual titles. But the SelectWidget is not used for this, it is used to select an item to set a field value. If you want a list with links to show, you should use the revealwidget. If you *also* want to set a field value as you click the link, then this is doable but a tad more complex so I won't describe it unless you ask.<:-)
--
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/UJzCgfHZ_sg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/53e2f537-6312-432b-ba9a-6dc8bf51c0beo%40googlegroups.com.
...a dropdown list of links to tiddler titles that one can use to open one of the titles......I am guessing I need to integrate the action navigate widget, but am not sure how...
<$vars selection=<<qualify $:/temp/goto>>>
<$select tiddler=<<selection>> actions="<$action-navigate $to={{{ [<selection>get[text]] }}}/>">
<$list filter='[all[tiddlers]sort[title]]'>
<option><<currentTiddler>></option>
</$list>
</$select>
</$vars>
...a dropdown list of links to tiddler titles that one can use to open one of the titles......I am guessing I need to integrate the action navigate widget, but am not sure how...
<$button popup=<<qualify $:/temp/goto>>> goto </$button>
<$reveal type="popup" state=<<qualify $:/temp/goto>>
class="tc-drop-down" style="min-width:auto;max-height:10em;overflow-y:scroll;">
<$list filter='[all[tiddlers]sort[title]]'>
<$button class="tc-btn-invisible" to=<<currentTiddler>>>
<$text text=<<currentTiddler>>/>
</$button>
</$list>
</$reveal>
--
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/UJzCgfHZ_sg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/8a4c54c6-ed30-4526-9ae6-d0ee48d589a0o%40googlegroups.com.
Here's a different solution, using a popup $reveal with $buttons:<$button popup=<<qualify $:/temp/goto>>> goto </$button>
<$reveal type="popup" state=<<qualify $:/temp/goto>>
class="tc-drop-down" style="min-width:auto;max-height:10em;overflow-y:scroll;">
<$list filter='[all[tiddlers]sort[title]]'>
<$button class="tc-btn-invisible" to=<<currentTiddler>>>
<$text text=<<currentTiddler>>/>
</$button>
</$list>
</$reveal>
<$button popup=<<qualify $:/temp/goto>>> goto </$button>
<$reveal type="popup" state=<<qualify $:/temp/goto>>
class="tc-drop-down" style="min-width:auto;max-height:10em;overflow-y:scroll;">
<$list filter='[all[tiddlers]sort[title]]'><$link /></$list>
</$reveal>
The compact version did not work for me on tiddlywiki.com, however the previous does.
Can you tell me how to get the contents of the popup to open towards the left rather than the right?
<$button popup=<<qualify $:/temp/goto>>> goto </$button>
<$reveal type="popup" state=<<qualify $:/temp/goto>>
class="tc-drop-down" style="min-width:auto;max-height:10em;overflow-y:scroll;">
<$list filter='[all[tiddlers]sort[title]]'><$link /></$list>
</$reveal>