[tw] Re: Todo list that

2015-06-02 Thread Pieter-Michiel Geuze
Thank you for that example.

On Thursday, June 5, 2014 at 1:36:26 AM UTC-4, Stephan Hradek wrote:



 Am Mittwoch, 4. Juni 2014 23:36:45 UTC+2 schrieb spen...@gmail.com:

 Yes I mentioned it in my parent post and pasted the code verbatim. 


 Sorry… I think I should read better…
  

 It would still be nice to know if there's a way to just insert a checkbox 
 into a tiddly that does nothing except remember if it's been ticked or 
 not

 The checkbox's state has to be stored somewhere. In the current 
 implementation this somewhere is a tag. The tag need not be in the same 
 tiddler. You could as well do this:

 1. Create a tiddler calloed cb
 $checkbox tiddler=cb tag={{!!title}}/ $view field=title/

 2. create checkboxes in other tiddlers like this:
 {{My Checkbox Label 1||cb}}
 {{My Checkbox Label 2||cb}}
 {{My Checkbox Label 3||cb}}

 The checkbox's states will be stored in cb with the given labels.






-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a883943b-0422-407b-8b68-1da0051614b0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Todo list that

2014-06-04 Thread Stephan Hradek
You did see http://tiddlywiki.com/#TaskManagementExample ?

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Todo list that

2014-06-04 Thread spence91
Yes I mentioned it in my parent post and pasted the code verbatim. 

What i'd like to be able to do in the absence of just being able to place a 
checkbox (which throws an error) is to go one further than the example - so 
that the filter will get all tiddlers that have the tags task and the tag 
CurrentTiddlyName.

So in that example, if I put the filter as:
$list 
filter=[!has[draft.of]tag[task]tag[TaskManagementExample]!tag[done]sort[created]]


Then we're good, but I won't be able to copy and paste that over to another 
Tiddly without editing it, so I want to do this but I'm not sure if I'm 
doing it correct - 

$list filter=[!has[draft.of]tag[task]tag[$view 
field=title/]!tag[done]sort[created]]

...which embarrassingly has worked after I properly closed the $view 
field=title/ with a forward slash!

So, problem solved! 

It would still be nice to know if there's a way to just insert a checkbox 
into a tiddly that does nothing except remember if it's been ticked or 
not

 

On Wednesday, 4 June 2014 20:43:18 UTC+1, Stephan Hradek wrote:

 You did see http://tiddlywiki.com/#TaskManagementExample ?


-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Todo list that

2014-06-04 Thread spence91
Sorry - that was incorrect and my testing was faulty - the line that I 
wanted was this

$list filter=[is[current]tagging[]!tag[done]tag[task]]


The answer was on here - was searching for the wrong terms, apologies.

On Wednesday, 4 June 2014 22:36:45 UTC+1, spen...@gmail.com wrote:

 Yes I mentioned it in my parent post and pasted the code verbatim. 

 What i'd like to be able to do in the absence of just being able to place 
 a checkbox (which throws an error) is to go one further than the example - 
 so that the filter will get all tiddlers that have the tags task and the 
 tag CurrentTiddlyName.

 So in that example, if I put the filter as:
 $list 
 filter=[!has[draft.of]tag[task]tag[TaskManagementExample]!tag[done]sort[created]]


 Then we're good, but I won't be able to copy and paste that over to 
 another Tiddly without editing it, so I want to do this but I'm not sure if 
 I'm doing it correct - 

 $list filter=[!has[draft.of]tag[task]tag[$view 
 field=title/]!tag[done]sort[created]]

 ...which embarrassingly has worked after I properly closed the $view 
 field=title/ with a forward slash!

 So, problem solved! 

 It would still be nice to know if there's a way to just insert a checkbox 
 into a tiddly that does nothing except remember if it's been ticked or 
 not

  

 On Wednesday, 4 June 2014 20:43:18 UTC+1, Stephan Hradek wrote:

 You did see http://tiddlywiki.com/#TaskManagementExample ?



-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Todo list that

2014-06-04 Thread Stephan Hradek


Am Mittwoch, 4. Juni 2014 23:36:45 UTC+2 schrieb spen...@gmail.com:

 Yes I mentioned it in my parent post and pasted the code verbatim. 


Sorry… I think I should read better…
 

 It would still be nice to know if there's a way to just insert a checkbox 
 into a tiddly that does nothing except remember if it's been ticked or 
 not

The checkbox's state has to be stored somewhere. In the current 
implementation this somewhere is a tag. The tag need not be in the same 
tiddler. You could as well do this:

1. Create a tiddler calloed cb
$checkbox tiddler=cb tag={{!!title}}/ $view field=title/

2. create checkboxes in other tiddlers like this:
{{My Checkbox Label 1||cb}}
{{My Checkbox Label 2||cb}}
{{My Checkbox Label 3||cb}}

The checkbox's states will be stored in cb with the given labels.




-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.