tittler "Project C" with tag "project"
And something to select:
<$select tiddler="$:/temp/selectproject" default=''>
<$list filter="[tag[project]]">
<option value=<<currentTiddler>>><<currentTiddler>></option>
</$list>
</$select>
{{$:/temp/selectproject!!text}} gives output: "Project A"
The following shows my table with "Project A" because there is a task with a project field "Project A"
<$macrocall $name=table-dynamic filter="[tag[task]project[Project A]!tag[done]]" fields="tbl-checkbox tbl-expand tbl-delete title project priority status assignee created due-date" class="w-100 table-hover thead-primary" stateTiddler="tasking" caption="''Task overview''" />
I expected the following would also show the same table (with Project A still selected):
<$macrocall $name=table-dynamic filter="[tag[task]project[$:/temp/selectproject!!text]!tag[done]]" fields="tbl-checkbox tbl-expand tbl-delete title project priority status assignee created due-date" class="w-100 table-hover thead-primary" stateTiddler="tasking" caption="''Task overview''" />
But instead I got "filter input is empty"
I assume there is a mistake in: [tag[task]project[$:/temp/selectproject!!text]!tag[done]]
A clue or help is appreciated ;-) Thanks in advance!