Hello.

I'm trying to construct a table with cells defined in a tiddler field.
I want to split the fields and use them but I have problems how list works.
Nested list means as many iterations as list elements. If I want to 
construct only ONE ROW per tiddler but with different fields, I have a 
problem.

Maybe my code can explain it better than me:

This is what I have

<$list filter="[!has[draft.of]tag[persona]]">
<tr><$list filter="[is[current]]+[split:table-headers[,]]" 
variable="currentField"><td><$view field=<<currentField>>/></td></$list>
</tr>


This is what I want
<$set name="fields-source" value={{!!title}}>
<$list filter="[!has[draft.of]tag[persona]]">
<tr>
<$list filter="[title{<<fields-sources>>}[split:table-headers[,]]" 
variable="currentField"><td><$view field=<<currentField>>/></td></$list>
</tr>
</$list>
</$set>

But it is not working.

PD: Jeremy please look at the first filter. It does not work without the 
plus simbol.

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.

Reply via email to