Michael,

I am not so sure what you mean "(just the text following to the "ToDo" 
would be missing)"

By dynamic tiddler do you mean a search built in a  tiddler rather than the 
search dialogue we normally use?

See (just the text following to the "ToDo" would be missing)

See the https://tiddlywiki.com/#search%20Operator

eg;

<<list-links filter:"[all[tiddlers]search[ToDo]]">>

But I recommend a single tiddler for each todo item, and tag them todo, 
then you would list them

<<list-links filter:"[tag[todo]]">>

But since each todo item is eventually done tag them with done on completion

<<list-links filter:"[tag[todo]!tag[done]]">>

The ! says NOT

Now if you do not have too many todo items you could list and display todo 
tiddlers in the same tiddler
Rather than using the list-links macro use <$list 

<$list filter="[tag[todo]!tag[done]]">
<h3>{{!!title}}<br></h3>
{{!!text}}<br>
<hr>
</$list>

In between the ,<$list> and </$list> the field references  {{!!title}} 
{{!!text}} refer to each todo tiddler (not tagged done), the other stuff is 
just HTML to format the output.

I have recently discovered the joy of using HTML in tiddlywiki, so the 
following allows to to click on the title to see the text.

<$list filter="[tag[toto]!tag[done]]">
<details>
  <summary>{{!!title}}</summary>
<blockquote> 
  <p>{{!!text}}</p>
</blockquote> 
</details>
</$list>


Here is a great place to learn or lookup HTML 
info https://www.w3schools.com/html/default.asp

Regards
Tony


On Friday, 1 December 2017 00:50:55 UTC+11, [email protected] wrote:
>
> Hello Mark,
>
> thanks for your answer.
>
> Can you explain me in detail what you mean, please?
> Sorry I think I didn't got the point so far... :-/
>
>
> Hello Tony,
>
> yes, the Serach, does almost exactly what I want.
> When I search for "ToDo" I get every tiddler with an "ToDo" in it. (just 
> the text following to the "ToDo" would be missing)
> Is there a way to create a (dynamic) tiddler, showing me the result of the 
> search for "ToDo"?
>
>
> best regards
> Michael
> Am Donnerstag, 23. November 2017 15:00:53 UTC+1 schrieb [email protected]
> :
>>
>> Hello there,
>>
>> I'm using TW (currently v5.1.14) to organize my work-life for about an 
>> year now, and I realy love this tool! 
>>
>> The structur of my TW is as following:
>>
>> Tiddler1 "Project-XYZ"
>>  - Project started.
>>  - "ToDo": Write E-Mail to supplyer
>>
>> Tiddler2 "Project-123"
>>  - Project almost finished.
>>  - "ToDo": Complete report
>>
>> What I would like to implement is a tiddler to summerize the "ToDo"s from 
>> all the tiddlers in my TW.
>> e.g.:
>>
>> Tiddler3 - ToDos
>>  - Project-XYZ: Write E-Mail to supplyer
>>  - Project-123: Complete report
>>
>> Does someone have an idea how I could "tag" sentences inside tiddlers to 
>> collect the tagged information in an other tiddler?
>>
>> Thanks a lot in advance for your ideas.
>>
>> BR DaZeller
>>
>

-- 
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/3ff06431-bf8f-4564-8d50-6809db52cb72%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to