Hi, I use the plugin ToDoNow (https://tid.li/tw5/tdn.html) and added a tiddler for showing me the overdue tasks and the tasks for today and the next seven days with: <$set name="listfilter" value="""[all[]tag[ToDo]][all[]tag[ToDoNow]] +[days:todo-deadline[7]sort[todo-deadline]]""">
<ul class="te-list"> <$list filter=<<listfilter>> emptyMessage="<li class='todo-empty'><<telang 'Relax-Nothing-to-do'>></li>"> <<todonowShowListItem>> </$list> </ul> </$set> Now I'd like to additionally sort the tasklist by title. It should be sorted at first by todo-deadline and then by title. I tried it with <$set name="listfilter" value="""[all[]tag[ToDo]][all[]tag[ToDoNow]] +[days:todo-deadline[7]sort[title]sort[todo-deadline]]"""> <ul class="te-list"> <$list filter=<<listfilter>> emptyMessage="<li class='todo-empty'><<telang 'Relax-Nothing-to-do'>></li>"> <<todonowShowListItem>> </$list> </ul> </$set> But that doesn't work. I tried to combine in different ways the original with this <ul> <$list filter="[tag[Composers]each[surname]get[surname]sort[]]" variable="name"> <$list filter="[tag[Composers]surname<name>sort[middlename]sort[givenname]]"> <li> <$link> <$view field="surname"/>, <$view field="givenname"/> <$view field="middlename"/> </$link> </li> </$list> </$list> </ul> But they also didn't work. How can I write it, that the double sort works? Do you know any help for this? Thanks :-) Surya -- 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 https://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/b6f6946a-9b5e-4e7b-ae85-05b16e41ac58%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

