I have a dropdown...
<$select field='dassection'>
<$list filter='[tag[section]]'>
<option><$view field='title' /></option>
</$list>
</$select>
It currently populates the option labels, but not the values...
I'd like the values to be populated with the title field, I thought {{!!title}} would work but it didn't.
I'd also like the <$select> to trigger a macro that will set a field with the value of the selected option when it is selected in the <$select>...
So far I have this:
\define updateSERPField()
<$action-setfield $tiddler="SERP - Database Analyst - Net Tech - MIS - Help Desk" $field="dassectionfilter" $value="">
\end
and I imagine that if I fill in the actions attribute of my <$select> with <<updateSERPField>> it will make the call, but I don't really know how to connect the two...
Thank you!