Hi c pa I think one problem may be around these two lines:
<$set name="temp1" value=<<getvalue>> > <$set name="temp2" value=<<concatitems "GetThis" $(temp1)$ >> > The issue is that in the second line you're trying to substitute the value of the variable set in the first line. Textual substitutions occur at the start of macro processing, before the content has been parsed. Thus the value for the variable that gets substituted will not be the value that you set. The usual fix is to introduce another macro so that you set the value of temp1, then invoke the macro, thus triggering the textual substitution with the new value. Best wishes Jeremy. On Tue, Mar 31, 2015 at 5:48 AM, Jed Carty <[email protected]> wrote: > I don't know of anyway to get around this problem, it looks like the view > widget is doing strange things when it is getting parsed. The good news is > that if you can upgrade to 5.1.8 when it comes out what you are trying to > do becomes much easier. > If you go to http://tiddlywiki.com/prerelease/ and import your jsonlist > tiddler, then make a tiddler with this in it: > > <$list filter="[[jsonlist]indexes[]]"> > <$list filter="[[jsonlist]getindex<currentTiddler>]+[addprefix[GetThis]]"> > > <$view field='title'/> > </$list> > </$list> > > It will do what you want it to. > > If your example is different from what you are hoping to do this may not > be helpful, but if you can wait until the next version is released it will > work. > > Sorry if this wasn't helpful, I may not have actually answered your > question. > > -- > 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 post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/tiddlywiki. > For more options, visit https://groups.google.com/d/optout. > -- Jeremy Ruston mailto:[email protected] -- 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 post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. For more options, visit https://groups.google.com/d/optout.

