HI,
i recently learned that i can put a value in a select widget as such
Filter By
<$select tiddler=<<currentTiddler>>
field="statusfilter"…>
<option value="[status[Completed]]">Completed</option>
for which i can then take the value set in the field , put it in a variable , then use the variable in a filter
so <$set name="statusfilter" value={{{[{!!statusfilter}]}}}>
<$list filter=" [subfilter<statusfilter>tidtype[task]]">
and now i can switch between multiple filters
so i tried the same with sorting, only the value i am using to do the sort is the outcome of a tagtree filter
<option>title</option>
<option value="[<currentTiddler>tagstree[]has:field[tidtype]get[Priority]sum[]]">priority</option>
<$list filter=" [subfilter<statusfilter>tidtype[task]]+[sort<statussort>]">
it didnt work , they are not sorted properly , is there something i am doing wrong ?
thanks