Hello dear helpers,
several months working on my own ToDo-solution in TW I have now all basic functions working and the style I wanted.
But still I bring 2 things not to work: One of it is:
I have in my overview (“Meine ToDos”) several detail-widgets (overdue, today, tomorrow, and so on) and there inside the related filtered tasks.
On top of all these I have an additional filter with checkboxes and a text field. In this way I can filter the lists inside the details widgets in an additionally way.
I managed to sort the lists in the filter by several fields (sort by due, then by sortbereich, then by priority, and so on).
But I would like to be able to do this “sorting by several fields” over several select-widgets. For being able to do this in an easy fast way without the need to dive into the code.
In a “normal” list I have been able to do this by 4 select-widgets which write f.e. “due” in the field “sort1”, then
<$set name="sort1" value={{{[{!!sort1}]}}}>
<$set name="sort2" value={{{[{!!sort2}]}}}>
<$set name="sort3" value={{{[{!!sort3}]}}}>
<$set name="sort4" value={{{[{!!sort4}]}}}>
and then
<$list filter="[tag[Task]] +[sort<sort4>sort<sort3>sort<sort2>sort<sort1>]">
<div style="margin-left:1.5em;">
<li><$link><<currentTiddler>></$link> {{!!due}} - {{!!sortbereich}}</li></div></$list>
But that sorting does not work in my tasks-overview (“Meine ToDos”)- probably because of that additional filter. This additional filter is working over the tiddler “$:/config/TiddlyTools/FindTitles”.
I tried yesterday the whole day in one million ways without success, please help me now…
The link for testing it: https://tests.tiddlyhost.com/. The ToDo-related tiddlers are under the tab “ToDos” and there under the topic “ToDo Allgemein”. The tiddlers with related macros & so on are under the tab “Mein System” >tab “Weitere (Meine Plugins)”. And for the style-things under “TW-Style”.
Thanks a lot in advance! Noushka
Oh sorry, I saw now, that there is a strange popup behaviour in the tasks-overview. I really don’t know, how to remove that. But it only happens in the test-wiki, not in my own. And also it does not happen in the template “$:/core/ui/ListItemTemplate 2”, which you can find under the tab “Mein System” >tab “TW-Style”.
And I am also sorry for the ugly look. I did not tweak the main appearance-settings like in my own and also the details-widget does not take the styles from my stylesheet- in my own wiki it does.