<$select tiddler="$:/temp/tag1">
<$list filter="[tag[A]tags[]sort[]]">
<option value=<<currentTiddler>>><<currentTiddler>></option>
</$list>
</$select><$select tiddler="$:/temp/tag1">
<$list filter="[tag[A]each[field]get[field]]" variable="field">
<option value=<<field>>><<field>></option>
</$list>
<$select tiddler="$:/temp/tag1"> <$list filter="[tag[family]each[keyword]get[keyword]]" variable="field"> <option value=<<field>>><<field>></option> </$list>
<$select tiddler="$:/temp/tag1">
<$list filter="[tag[family]each[keyword]get[keyword]]" variable="keyword">
<option value=<<keyword>>><<keyword>></option>
</$list>
Try this
<$select tiddler="$:/temp/tag1">
<$list filter="[tag[family]]">
<option value={{!!keyword}}><<currentTiddler>><br>@@color:red;{{!!keyword}}@@</option>
</$list>
</$select>
<$select tiddler="$:/temp/tag1">
<$list filter="[has[findme]tags[]]" variable="mytag">
<optgroup label=<<mytag>>>
<$list filter="[tag<mytag>get[field]]" variable="field">
<option value=<<field>>><<field>></option>
</$list>
</optgroup>
</$list>
</$select>
It would produce a select widget populated with the values contained in the keyword field
Sorry Mark, but that's not what I want.I need the values of the keyword field outside the widget, in the body of the tiddler (which contains the select widget)
<$select tiddler="$:/temp/familykeyword">
<$list filter="[tag[family]]">
<option value={{!!keyword}}><<currentTiddler>></option>
</$list>
</$select>
Now wherever you want the keyword to appear, say the body of the tiddler containing the select widget, just add {{$:/temp/familykeyword}}
Sincerely
Riz
.newline {word-spacing: 9999999px;}
<$select tiddler="$:/temp/familykeyword"> <$list filter="[tag[family]]"> <option value= {{!!keyword}}><<currentTiddler>></option> </$list></$select>
@@.newline<div>{{ $:/temp/familykeyword }}</div>@@