[tw] Re: Newbie needs help in drafting search code

2014-06-03 Thread Danielo Rodríguez
You're welcome :-) 

-- 
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: Newbie needs help in drafting search code

2014-06-03 Thread RickL
Super!  Works great!
Will take a little work to get everything set up but will really help me in 
the long run.
Thanks so much for your help!

R

On Monday, June 2, 2014 4:03:53 PM UTC-4, Danielo Rodríguez wrote:
>
> Yes, it is possible but it would be a bit complex if you are not used to 
> it.
>
> Each item should be a tiddler. 
>
> Take a look at: 
> http://tiddlywiki.com/#TaskManagementExample:TaskManagementExample
>
> You can have specific list with. Here you will need at least two tags, one 
> for task and other for task type. Then, you do the master list with just 
> the tag task.
>
>
> With your example:
>
> Project A
> [x]item 1 tags: task projectA done
> [_]item 2 tags: task projectA
> [x]item 3 tags: task projectA done
>
> Project B
> [_]item 4 tags: task projectB
> [x]item 5 tags: task projectB done
> [x]item 6 tags: task projectB done
>
> Example for project B list:
>
> <$list 
> filter="[!has[draft.of]tag[task]tag[projectB]!tag[done]sort[title]]">
>
> <$checkbox tag="done"> <$link to={{!!title}}><$view 
> field="title"/>
>
> 
>
> <$list filter="[!has[draft.of]tag[task]tag[projectB]
> tag[done]sort[title]]">
>
> <$checkbox tag="done"> ~~<$link to={{!!title}}><$view 
> field="title"/>~~
>
> 
>
> Then your just make your master list like: 
>
> <$list filter="[!has[draft.of]tag[task]!tag[done]sort[title]]">
>
> <$checkbox tag="done"> <$link to={{!!title}}><$view 
> field="title"/>
>
> 
>
>
> If you have any doubt let me know.
>
>
> El lunes, 2 de junio de 2014 17:43:01 UTC+2, RickL escribió:
>>
>> So...is this not possible?
>> Not enough information?
>>
>>
>> On Saturday, May 31, 2014 6:38:51 PM UTC-4, RickL wrote:
>>>
>>> Not sure about tiddlyspot but will look into it.
>>> Meanwhile, below is an illustration of what I would like.
>>>
>>> Project A
>>> [x]item 1
>>> [_]item 2
>>> [x]item 3
>>>
>>> Project B
>>> [_]item 4
>>> [x]item 5
>>> [x]item 6
>>>
>>> Project C
>>> [x]item 7
>>> [_]item 8
>>> [_]item 9
>>>
>>>
>>> Formula or code to return the following:
>>>
>>> Master Purchase List
>>> [_]item 2
>>> [_]item 4
>>> [_]item 8
>>> [_]item 9
>>>
>>>  I am using TW 5.0.8 on Chrome; trying to upgrade to the latest 5.0.12 
>>> but not having much luck with that either. :)
>>> Is this possible?
>>>
>>>
>>> On Friday, May 30, 2014 3:55:30 PM UTC-4, Stephan Hradek wrote:



 Am Freitag, 30. Mai 2014 16:17:58 UTC+2 schrieb RickL:
>
> I have group of tiddlers for projects, each tagged "project".
> Each "project" tiddler contains a list of materials necessary to 
> complete the project, with a checkbox for each item.
>
 So if you already have that, why not post it on (e.g.) tiddly spot so 
 that one can play around to help you reach your goal?

 I, for example, absolutely hate it, having to set something up which I 
 *think* is what one described. I prefer to be able to play around with 
 the real problem to help solve it. 


 BTW: Is it TWc or TW5?

>>>

-- 
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: Newbie needs help in drafting search code

2014-06-02 Thread Danielo Rodríguez
Yes, it is possible but it would be a bit complex if you are not used to it.

Each item should be a tiddler. 

Take a look 
at: http://tiddlywiki.com/#TaskManagementExample:TaskManagementExample

You can have specific list with. Here you will need at least two tags, one 
for task and other for task type. Then, you do the master list with just 
the tag task.


With your example:

Project A
[x]item 1 tags: task projectA done
[_]item 2 tags: task projectA
[x]item 3 tags: task projectA done

Project B
[_]item 4 tags: task projectB
[x]item 5 tags: task projectB done
[x]item 6 tags: task projectB done

Example for project B list:

<$list filter="[!has[draft.of]tag[task]tag[projectB]!tag[done]sort[title]]">

<$checkbox tag="done"> <$link to={{!!title}}><$view 
field="title"/>



<$list filter="[!has[draft.of]tag[task]tag[projectB]tag[done]sort[title]]">

<$checkbox tag="done"> ~~<$link to={{!!title}}><$view 
field="title"/>~~



Then your just make your master list like: 

<$list filter="[!has[draft.of]tag[task]!tag[done]sort[title]]">

<$checkbox tag="done"> <$link to={{!!title}}><$view 
field="title"/>




If you have any doubt let me know.


El lunes, 2 de junio de 2014 17:43:01 UTC+2, RickL escribió:
>
> So...is this not possible?
> Not enough information?
>
>
> On Saturday, May 31, 2014 6:38:51 PM UTC-4, RickL wrote:
>>
>> Not sure about tiddlyspot but will look into it.
>> Meanwhile, below is an illustration of what I would like.
>>
>> Project A
>> [x]item 1
>> [_]item 2
>> [x]item 3
>>
>> Project B
>> [_]item 4
>> [x]item 5
>> [x]item 6
>>
>> Project C
>> [x]item 7
>> [_]item 8
>> [_]item 9
>>
>>
>> Formula or code to return the following:
>>
>> Master Purchase List
>> [_]item 2
>> [_]item 4
>> [_]item 8
>> [_]item 9
>>
>>  I am using TW 5.0.8 on Chrome; trying to upgrade to the latest 5.0.12 
>> but not having much luck with that either. :)
>> Is this possible?
>>
>>
>> On Friday, May 30, 2014 3:55:30 PM UTC-4, Stephan Hradek wrote:
>>>
>>>
>>>
>>> Am Freitag, 30. Mai 2014 16:17:58 UTC+2 schrieb RickL:

 I have group of tiddlers for projects, each tagged "project".
 Each "project" tiddler contains a list of materials necessary to 
 complete the project, with a checkbox for each item.

>>> So if you already have that, why not post it on (e.g.) tiddly spot so 
>>> that one can play around to help you reach your goal?
>>>
>>> I, for example, absolutely hate it, having to set something up which I 
>>> *think* is what one described. I prefer to be able to play around with 
>>> the real problem to help solve it. 
>>>
>>>
>>> BTW: Is it TWc or TW5?
>>>
>>

-- 
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: Newbie needs help in drafting search code

2014-06-02 Thread RickL
So...is this not possible?
Not enough information?


On Saturday, May 31, 2014 6:38:51 PM UTC-4, RickL wrote:
>
> Not sure about tiddlyspot but will look into it.
> Meanwhile, below is an illustration of what I would like.
>
> Project A
> [x]item 1
> [_]item 2
> [x]item 3
>
> Project B
> [_]item 4
> [x]item 5
> [x]item 6
>
> Project C
> [x]item 7
> [_]item 8
> [_]item 9
>
>
> Formula or code to return the following:
>
> Master Purchase List
> [_]item 2
> [_]item 4
> [_]item 8
> [_]item 9
>
>  I am using TW 5.0.8 on Chrome; trying to upgrade to the latest 5.0.12 but 
> not having much luck with that either. :)
> Is this possible?
>
>
> On Friday, May 30, 2014 3:55:30 PM UTC-4, Stephan Hradek wrote:
>>
>>
>>
>> Am Freitag, 30. Mai 2014 16:17:58 UTC+2 schrieb RickL:
>>>
>>> I have group of tiddlers for projects, each tagged "project".
>>> Each "project" tiddler contains a list of materials necessary to 
>>> complete the project, with a checkbox for each item.
>>>
>> So if you already have that, why not post it on (e.g.) tiddly spot so 
>> that one can play around to help you reach your goal?
>>
>> I, for example, absolutely hate it, having to set something up which I 
>> *think* is what one described. I prefer to be able to play around with 
>> the real problem to help solve it. 
>>
>>
>> BTW: Is it TWc or TW5?
>>
>

-- 
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: Newbie needs help in drafting search code

2014-05-31 Thread RickL
Not sure about tiddlyspot but will look into it.
Meanwhile, below is an illustration of what I would like.

Project A
[x]item 1
[_]item 2
[x]item 3

Project B
[_]item 4
[x]item 5
[x]item 6

Project C
[x]item 7
[_]item 8
[_]item 9


Formula or code to return the following:

Master Purchase List
[_]item 2
[_]item 4
[_]item 8
[_]item 9

 I am using TW 5.0.8 on Chrome; trying to upgrade to the latest 5.0.12 but 
not having much luck with that either. :)
Is this possible?


On Friday, May 30, 2014 3:55:30 PM UTC-4, Stephan Hradek wrote:
>
>
>
> Am Freitag, 30. Mai 2014 16:17:58 UTC+2 schrieb RickL:
>>
>> I have group of tiddlers for projects, each tagged "project".
>> Each "project" tiddler contains a list of materials necessary to complete 
>> the project, with a checkbox for each item.
>>
> So if you already have that, why not post it on (e.g.) tiddly spot so that 
> one can play around to help you reach your goal?
>
> I, for example, absolutely hate it, having to set something up which I 
> *think* is what one described. I prefer to be able to play around with 
> the real problem to help solve it. 
>
>
> BTW: Is it TWc or TW5?
>

-- 
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: Newbie needs help in drafting search code

2014-05-30 Thread Stephan Hradek


Am Freitag, 30. Mai 2014 16:17:58 UTC+2 schrieb RickL:
>
> I have group of tiddlers for projects, each tagged "project".
> Each "project" tiddler contains a list of materials necessary to complete 
> the project, with a checkbox for each item.
>
So if you already have that, why not post it on (e.g.) tiddly spot so that 
one can play around to help you reach your goal?

I, for example, absolutely hate it, having to set something up which I 
*think* is what one described. I prefer to be able to play around with the 
real problem to help solve it. 


BTW: Is it TWc or TW5?

-- 
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.