Hi Josh
1. Is there a way of getting a list of all tiddlers tagged with the tag
> *"task"* that are not tagged with the name of another tiddler?
>
> This would in effect show me all tasks I had to complete that I had not
> assigned to a specific project.
>
You can't test for a tiddler having just a single tag. You'd have to
specify the tags that you want to exclude, for example to get the tiddlers
tagged task that are not tagged home or work:
[tag[task]!tag[home]!tag[work]]
etc.
> 2. Is there also a way of showing all tiddlers that show up in the tag
> section of the Info Button, in a checkbox. Similar to the way the default
> Task Management tiddler works in TW5. (see code below).
>
You want to create a checkbox for each of a fixed set of tags on a tiddler?
That is entirely possible:
<$list filter="tag1 tag2 tag3" variable="tagItem">
<$checkbox tag=<<tagItem>>>Tag: <<tagItem>></$checkbox>
</$list>
> However is there a way of writing the query such that I wouldn't have to
> change the tag to the name of the project note each time. I.e. the code
> might be <create list><create checkbox><link><Tiddlers in the Tagging
> Section of the Info Note><link></create checkbox></create list>.
>
I don't quite get this. Does the above help?
> By using this generic code I would be able to place it in every project
> note and not have to modify any tags. Using the below method I would have
> to for example change the tag *waiting* to be the title of the project
> tiddler.
>
Rather than adding that chunk to every project note, you could add it to
the viewtemplate for every project note. To do that you'd create a tiddler
tagged $:/tags/ViewTemplate and then within it have a reveal widget that
only reveals the content if the tiddler has a particular field.
Best wishes
Jeremy
This would allow me to look at a task list (showing all my tasks) with
> clickable checklists, as well as each project note (a tiddler tagged with
> "project") showing only the tasks I need to do for that project. And I
> could tick off each project task
>
> The code I have used from the Task Management tiddler is:
>
> <$list filter="[!has[draft.of]tag[waiting]!sort[modified]]">
> <$checkbox> <$link to={{!!title}}><$view
> field="title"/></$link></$checkbox>
> </$list>
>
> --
> 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/groups/opt_out.
>
--
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/groups/opt_out.