On Sunday, August 23, 2020 at 8:41:45 AM UTC-7, David Gifford wrote:

> ...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...
>
 
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>

Notes:
1) Unlike the $select solution, this method doesn't remember the selection, 
so clicking always goes to the tiddler.
2) Adjust the style="..." attributes to suit your needs.  Specifically, you 
can set a different max-height value.

enjoy,
-e

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8a4c54c6-ed30-4526-9ae6-d0ee48d589a0o%40googlegroups.com.

Reply via email to