Hi Yoann
If you want to make a list of the items in a list stored in the field
"agenda" of the tiddlers tagged "meeting", you should be able to do this:
<$list filter="[tag[meeting]]" variable="currentTiddler">
! Meeting: {{!!title}}
Agenda items:
<$list filter="[list[!!agenda]]" variable="agendaItem">
<$transclude tiddler=<<agendaItem>>/>
</$list>
</$list>
However, it turns out that there is a bug in 5.0.7's list filter handling
whereby it does not properly support the ability to reference the current
tiddler. This stops the filter [list[!!agenda]] from working properly.
I've fixed the bug for 5.0.8, and try to get it out in the next couple of
days,
https://github.com/Jermolene/TiddlyWiki5/commit/70ed6e6ad325f602193582d9141ddee942ac28be
Best wishes
Jeremy.
On Mon, Jan 27, 2014 at 1:33 PM, Yoann Babel <[email protected]> wrote:
> Now in TW5.beta7 we can transclude datatiddlers :
> <tiddler title>##<property index>
>
> I would like to make a list of data field "agenda" but I can't find how to
> do it :
>
> <$list filter="[tag[agenda]]">
> {{!!title##agenda}}
> </$list>
>
> or
>
> {{{ [tag[agenda]]##agenda }}}
>
> or
>
> {{{ [tag[agenda]] || agendaview}}}
> with agenda view :
> <$transclude##agenda>
>
> I'm lost, I don't really understand what I'm doing and how Widgets can be
> combined or not.
> Can somebody help me ?
> TW5 syntax is far more powerful but ... complicated to understand than TW2.
>
> regards,
>
> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWikiDev" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/tiddlywikidev.
> For more options, visit https://groups.google.com/groups/opt_out.
>
--
Jeremy Ruston
mailto:[email protected]
--
You received this message because you are subscribed to the Google Groups
"TiddlyWikiDev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywikidev.
For more options, visit https://groups.google.com/groups/opt_out.