Re: [tw] Re: List field values as links?

2015-03-02 Thread David Gifford
Thanks Tobias and Astrid, the filter itself works. Now how do I get it to display one item on each line instead of horizontally with no spacing? Currently the results turn out like this: Test topic 1Test topic 2 On Mon, Mar 2, 2015 at 10:00 AM, Astrid Elocson aeloc...@gmail.com wrote: To

Re: [tw] Re: List field values as links?

2015-03-02 Thread David Gifford
Hi Jed, 1. I don't see a show button at the bottom of the linked tiddler 2. I did the following and it worked kind of odd $list filter=someFilter $list filter=[each[b.topic1]get[b.topic1]] [each[b.topic2]get[b.topic2]] [each[b.topic3]get[b.topic3]] +[sort[title]]/ /$list Resutls Test topic

[tw] Re: List field values as links?

2015-03-02 Thread Jed Carty
Sorry, replace the someFilter part with your filter. What that is doing is listing whatever someFilter returns on your wiki using $list filter=[each[b.topic1]get[b.topic1]] [each[b.topic2]get[b.topic2]] [each[b.topic3]get[b.topic3]] +[sort[title]]/ as a template. This can be useful at times

Re: [tw] Re: List field values as links?

2015-03-02 Thread David Gifford
Yay, it worked! Thanks Jed! On Mon, Mar 2, 2015 at 4:51 PM, David Gifford dgiff...@crcna.org wrote: Hi Jed My bad, it was already showing, so the button said 'hide.' Got it On Mon, Mar 2, 2015 at 4:50 PM, Jed Carty inmyso...@gmail.com wrote: Sorry, replace the someFilter part with your

Re: [tw] Re: List field values as links?

2015-03-02 Thread David Gifford
Hi Jed My bad, it was already showing, so the button said 'hide.' Got it On Mon, Mar 2, 2015 at 4:50 PM, Jed Carty inmyso...@gmail.com wrote: Sorry, replace the someFilter part with your filter. What that is doing is listing whatever someFilter returns on your wiki using $list

[tw] Re: List field values as links?

2015-03-02 Thread Jed Carty
To get a vertical instead of horizontal list you can split the list widget like this: $list filter=someFilter /$list Any content you put between the widget tags will be used as a template, or you can specify a template for the list items using $list filter=someFilter

[tw] Re: List field values as links?

2015-03-02 Thread Tobias Beer
Not sure how to strip it down to unique values only, but this may work.. $list filter=[get[topic1]] [get[topic2]] [get[topic3]] + [sort[title]]/ Perhaps we need a new filter, e.g. $list filter=[get[topic1]] [get[topic2]] [get[topic3]] + [unique[]sort[title]]/ Best wishes, Tobias. -- You

[tw] Re: List field values as links?

2015-03-02 Thread Astrid Elocson
To get unique values only, use *each*: $list filter=[each[topic1]get[topic1]] [each[topic2]get[topic2]] [each[topic3]get[topic3]] +[sort[title]]/ Most filter operators remove duplicates automatically, but *get* doesn't. Duplicates are automatically removed from a sequence of filter runs, such