[tw] Re: tiddler list with titles and tags

2018-03-27 Thread Jed Carty
No, it isn't possible to sort it using {{!!tags}}, when you do that than you get the string stored in the tags field and the sorting works on items in a list, not on the characters in a string. The tags field should be sorted by title, but there may be times, like when you add a new tag, when i

[tw] Re: tiddler list with titles and tags

2018-03-27 Thread 'Mark S.' via TiddlyWiki
Isn't {{!!tags}} already sorted? On Tuesday, March 27, 2018 at 8:31:29 AM UTC-7, Captain Packers wrote: > > Jed, > > Is it possible to sort the the tags if I use the {{!!tags}} construct > listed below? > > <$list filter="[!has[draft.of]!tag[Done]!tag[@waiting]tag[@next]]"> > <$checkbox tag="Don

[tw] Re: tiddler list with titles and tags

2018-03-27 Thread Captain Packers
Jed, Is it possible to sort the the tags if I use the {{!!tags}} construct listed below? <$list filter="[!has[draft.of]!tag[Done]!tag[@waiting]tag[@next]]"> <$checkbox tag="Done"> <$link to={{!!title}}><$view field="title"/> - {{!!tags}} On Monday, March 12, 2018 at 10:49:00 AM UTC-4, Jed

[tw] Re: tiddler list with titles and tags

2018-03-13 Thread Captain Packers
Thanks Jed. I ended up using this: <$list filter="[!has[draft.of]tag[Task]!tag[Done]tag[Next]]"> <$checkbox tag="Done"> <$link to={{!!title}}><$view field="title"/> - {{!!tags}} which creates a comma separated tag list. On Monday, March 12, 2018 at 10:49:00 AM UTC-4, Jed Carty wrote: > > Yes

[tw] Re: tiddler list with titles and tags

2018-03-12 Thread Jed Carty
Yes, that is possible. Try this: <$list filter="[!has[draft.of]tag[Tasks]!tag[Done]tag[Next]]"> <$checkbox tag="Done"> <$link to={{!!title}}><$view field="title"/> <$list filter='[tags[]]'><>- -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. T

Re: [tw] Re: tiddler list with titles and tags

2018-03-12 Thread Don Lund
Thanks Eskha. How would you modify something like this: <$list filter="[!has[draft.of]tag[Tasks]!tag[Done]tag[Next]]"> <$checkbox tag="Done"> <$link to={{!!title}}><$view field="title"/> so that the tags could be included with the title as part of <$view field="title"/>, maybe appended to the

[tw] Re: tiddler list with titles and tags

2018-03-12 Thread Eskha
Hi Captain, The tiddler tags are stored in the "tags" field so you can display them with the *{{!!tags}}*syntax inside the list widget. If you want to display them so that they look like ... tags, you can use the following template : "$:/core/ui/TagTemplate" with the syntax *{{!!tags||$:/cor