Hi ,
I am using a task manager, where tiddlers are tasks, and all have a field called Status , for which it can hold values such as In progress or completed
I am trying to use a select widget to toggle between different filter criteria , the select widget sets a value in a field, then i use the set widge to define the field value as a variable , then i take that variable and use in my filter,
Filter By <$select tiddler=<<currentTiddler>>
field="statusfilter"…>
<option disabled></option>
<option>in progress</option>
<option>Completed</option>
</$select>
<$set name="statusfilter" value={{{[{!!statusfilter}]}}}>
<$list filter=" [status<statusfilter>tidtype[task]]">
this works to toggle between different values, but what if want all values, so a filter to show all statuses, is this acheivable using this method , or should i be trying something diffenret ?