Re: [tw] Re: [TW5] Add dynamic tags based on list filter results

2014-03-13 Thread ruddb
Hi Harald, The field projectthread is a custom field I added to the tiddler. The filter works somehow because I can see the 'title' of the filtered tiddlers as the name of the checkbox. Only that it does not trigger the tag change action. Hi Matabele, As to the simpler filter, let me try that

Re: [tw] Re: [TW5] Add dynamic tags based on list filter results

2014-03-13 Thread ruddb
Hi Stephan, I created examples in http://onewikinote.tiddlyspot.com/ *Search for:* TagDemo - is using my filter TagDemo2 - is using the simple filter Tag1 Tag2 Tag3 What I expect, when I check 'Tag1' it should add the 'Tag1' tag on the TagDemo tiddler, and so on... On Thu, Mar 13, 2014 at

Re: [tw] Re: [TW5] Add dynamic tags based on list filter results

2014-03-13 Thread ruddb
Hi Stephan, Tried your solution on the TagDemo3 and it works :) Thanks! On Thu, Mar 13, 2014 at 11:43 PM, ruddb rudin...@gmail.com wrote: Hi Stephan, I created examples in http://onewikinote.tiddlyspot.com/ *Search for:* TagDemo - is using my filter TagDemo2 - is using the simple

Re: [tw] Re: [TW5] Add dynamic tags based on list filter results

2014-03-13 Thread ruddb
Hi Stephan, Just for my understanding, why the old code does not work when the checkbox tag value is defined in the macro? Why it is needed to specify the 'overview tiddler'? On Thu, Mar 13, 2014 at 11:44 PM, ruddb rudin...@gmail.com wrote: Hi Stephan, Tried your solution on the TagDemo3

[tw] [TW5] node js hosting

2014-03-13 Thread ruddb
Hi, I get this warning when running local TW5 on node.js syncer-browser - 00:16:03 14 3 2014 XMLHttpRequest http://localhost:8080/#XMLHttpRequest error code: 404 Also is it possible to run on this with multiple users from different pc connected to the LAN? -- You received this message

Re: [tw] Re: [TW5] Add dynamic tags based on list filter results

2014-03-13 Thread ruddb
Thanks! Clear and it does make sense. On Friday, March 14, 2014 12:09:40 AM UTC+7, Stephan Hradek wrote: Because the checkbox widget sets the tag on the currentTiddler which happens to be the one you got the !!title from. $set name=thistiddler value={{!!title}} !-- here the currentTiddler

[tw] Re: how to get the value of variable in a set widget

2014-03-09 Thread ruddb
Thanks, your answer was straight on. Let me try that approach. May I know if this is documented and available in the TW5 help? I did not see this |direct| method before. Sorry that it was not explained quite clearly :) and thanks for the patience. ;) You may find my TW5 project at

Re: [tw] Re: [TW5] assign value to fields on tw-new-tiddler action or similar action when creating a new tiddler from a template

2014-03-08 Thread ruddb
Thanks for the advise. I have implemented it inside a macro as you mentioned. Looking forward to the next release. On Saturday, March 8, 2014 5:58:56 PM UTC+7, Jeremy Ruston wrote: Trying it now and it works great! I was a bit hesitant to use some plugins because of bad experience from D3

[tw] how to get the value of variable in a set widget

2014-03-08 Thread ruddb
I have assigned a value to a variable using syntax below: $set name=testfield value=testvalue $button message=tw-new-tiddler param=mytemplate set=Draft of 'mytemplate 1' setTo=$testfield$new tiddler/$button /$set But I cannot get the value to assign to the setTo property. Any advise how to do?

[tw] Re: how to get the value of variable in a set widget

2014-03-08 Thread ruddb
I understand. This was, however, (I think) the simplest example to show my intent which is to pass the value of a variable to another property. My real use case is: I have three tiddlers (subject, notes, task) linked together by a 'subjectthread' field, which is the 'created' timestamp of the

[tw] Re: [TW5] assign value to fields on tw-new-tiddler action or similar action when creating a new tiddler from a template

2014-03-07 Thread ruddb
Hi Stephan, Trying it now and it works great! I was a bit hesitant to use some plugins because of bad experience from D3 to TW5 migration so I want to try to use core functions. Do you now if this widget type will go to the official release? Thanks again. On Friday, March 7, 2014 12:33:10 PM

[tw] [TW5] assign value to fields on tw-new-tiddler action or similar action when creating a new tiddler from a template

2014-03-06 Thread ruddb
I am using a template tiddler with a preset field, then this template tiddler is used on a tw-new-tiddler action from a button. However I want to pass the title value of the calling tiddler (where the button is) to the field of the new tiddler. Anyway to implement this? One approach I am