I'm trying to include a list of all tiddlers which contain a variable
field, sorted by the value of that field. ie, the tiddlers all have a field
named "bob" with various numbers in that field. The name of the field is
variable (defined in the "lwrcase" field of the current tiddler). The code
below works perfectly - except that i can't use a variable to transclude
the contents of the "bob" field. If i put in the name of the field (as
below) it works fine.
Anybody have any idea? I assume it's going to be something with helper
macros and whatnot but I can't seem to get it to work.
Thanks in advance!
<table>
<tr>
<th>number</th>
<th>Name</th>
<th>Description</th>
<th>Cost</th>
</tr>
<$list filter="[tag[spell]has{!!lwrcase}] +[nsort{!!lwrcase}]">
<tr>
<td><$transclude field="bob"/></td>
<td><$link to={{!!title}}><$transclude field="title"/></$link></td>
<td><$transclude field="description"/></td>
<td><$transclude field="cost"/></td>
</tr>
</$list>
</table>
--
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/13f81151-d095-4435-85b3-b40dd5806852%40googlegroups.com.