I want a list of all tags ZigBee
with a sort criteria stored in a tiddler-field which is changeable by a drop -down menu. I came up with this:
<div>
Sort by:
<$select field="sort-field" default="title">
<option value="title">Title</option>
<option value="created">Created Date</option>
<option value="modified">Modified Date</option>
<option value="tags">Tags</option>
</$select>
</div>
<ul>
<$list filter="[tag[ZigBee]sort[<sort-field>]]">
<li><$link to={{!!title}}><$view field="title"/></$link></li>
</$list>
</ul>
However the list never changes sorting whatever value for sort-field
I do select?