I have a button that modifies a tiddler status field:
<$button>
<$action-setfield $tiddler=testTag2 status="Passed"/>
Set testTag2 status to 'Passed'
</$button>
And a filter
{{{[tag[test]]}}}
resulting in 3 tiddlers
When I try something like that:
<$button>
<$action-setfield $tiddler={{{[tag[test]]}}} status="Passed"/>
Set all tiddlers tagged 'test' status to 'Passed'
</$button>
nothing happens
Is it possible to set field of all results of a filter somehow?
I saw a node.js command, but is there a way to do something like that within the wiki itself?