Hi,
I have this simple list:
<$list filter="[!has[draft.of]tag[Task archived]sort[created]]">
<div>
<$checkbox tag="Task done" uncheckactions="""<$action-sendmessage $message="tm-remove-tag" $param="Task archived" />""" >
<$view field="done-date"/>
<$link to=<<currentTiddler>>>
<$view field="title"/>
</$link>
</$checkbox>
</div>
</$list>
and I would like the checkbox to remove the "Task done" tag (which it does) but also remove a tag "Task archived". I read that the uncheckactions parameter of the checkbox widget is exactly what I need, however, I cannot get it to work.
Can someone please tell me what I am doing wrong? The documentations mention that the ActionWidget needs to be a string, hence the triple quotes, but it does not work without them either. I also tried to wrap it in an additional macro but that did nothing.
Thanks,
Petri