Friends,
I have a tiddler $:/.user/lists/Circles which contains : personal family 
friends acquaintances relatives work. These are to be used as tags from a 
dropdown for contact tiddlers. So a contact could be a personal contact, or 
someone from family or a friend etc

I am trying to produce a list like this

Personal:
   [[contact 1]]
   [[contact 2]]
Family
   [[contact 3]]
   [[contact 4]]

Why does this not work? 

<$list filter="[list[$:/.user/lists/Circles!!text]]" variable="item">

<<item>>
<$list filter="[tag[contact]tag[item]]">

</$list>
</$list>

The outer list works and produces a list: 
    personal 
  family 
  friends 
  acquaintances 
  relatives 
  work
   
But the inner list does not give anything. Why does 'item' give out correct 
value in the outer list but has no effect in the inner one?


I tried this too:


<$list filter="[list[$:/.user/lists/Circles!!text]]" >

<<currentTiddler>>
<$list filter="[tag[contact]tag[currentTiddler]]">

</$list>

</$list>



The output is same as above. Why does currentTiddler does not have any 
effect when in the inner list. 


I suspect this has something to do with the fact that the filter is using a 
list operator working on text of a tiddler and not on actual tiddlers. I 
mean that currentTiddler refers to a non-existent tiddler.

And this work:

<$list filter="[list[$:/.user/lists/Circles!!text]]">


{{!!title}}
<$list filter="[all[current]tagging[]tag[contact]]">


</$list>
</$list>




-- 
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/8efb2622-8091-473a-93e6-fb40c5734614%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to