[tw] Re: Grouped list of data tiddlers

2018-02-19 Thread Iain
Thanks Jed and Stephan. Very helpful.

Cheers, Iain

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/17dd2cb9-4615-442a-ad83-87c6ed7c3231%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Grouped list of data tiddlers

2018-02-19 Thread Stephan Hradek
Better use regexp to find the type

<$list filter='[all[]]' variable=ThisTiddler>
 <$list filter='[indexes[]regexp[^type$]]'>

  <>
 


It will solve the issue mentioned.

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/16834c10-fc00-48df-b371-062dcbfa69cb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Grouped list of data tiddlers

2018-02-19 Thread Jed Carty
Tiddlywiki is built around fields so as you have discovered, it is much 
easier to build things in tiddlywiki that use fields.

That being said, to do this using indexes you need something like this:

<$list filter='[all[]]' variable=ThisTiddler>
 <$list filter='[indexes[]prefix[type]suffix[type]]'>
  
 



There are problems with this approach, like a field called typefootype will 
also show up.

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ce577351-4bcb-4742-9cf4-c6a2ed0b12f2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.