> Could the jQuery ListMenu Plugin be used to achieved the desired
> result?
>
> http://www.ihwy.com/Labs/jquery-listmenu-plugin.aspx
>

Hi mck,

with ListNavPlugin I only got it to do this with a static list of
force linked tiddler links:
http://aid1.tiddlyspot.com/

But maybe some other plugin is interfering in my case, and it's always
worth trying with different conditions.

> I currently have a tiddlywiki of over 1300 thesis titles and so am
> looking for a more elegant way to create the tabbed a-z 
> list:http://pgilib.googlepages.com/theses.html
>

Very impressive example of ForEachTiddler scripts - really well done!

I never seen tabs constructed the way you did:

<tabs mytabs>
<tab A>
<<forEachTiddler
where
      'tiddler.title.replace(/^(A|An|The) /,"").substr(0,1).toUpperCase
()=="A" && tiddler.tags.contains("cp")'
   sortBy
 'tiddler.title.replace(/^(A|An|The) /,"").toUpperCase()'>>
</tab>
<tab B>
<<forEachTiddler
      where
...
</tab>
<tab Z>
<<forEachTiddler
where
      'tiddler.title.replace(/^(A|An|The) /,"").substr(0,1).toUpperCase
()=="Z" && tiddler.tags.contains("cp")'
   sortBy
 'tiddler.title.replace(/^(A|An|The) /,"").toUpperCase()'>>
</tab>
</tabs>

...hmm, looks more like html than TiddlyWiki's own tab syntax to me..?

And with tiddler transclusion it could still be shortened a bid.

Thanks for sharing.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to