In a form I have a field that I'd like to be a list of tiddlers based
on a tag. I know I use select to create the drop down list but can't
seem to get it to populate with the list of tiddlers.
My test tiddler look like this:
<html>
<select name=morph><<tiddler DropdownOptionList with: "Morph">></
select>
</html>
Tiddler DropdownOptionList looks like this:
<<forEachTiddler
where
'tiddler.tags.contains("$1")'
sortBy
'tiddler.title'
write '"<option>"+tiddler.title'>>
Without the html tags the test tiddler looks fine but doesn't create a
dropdown list. With them it results in a blank box. Am I missing
something critical or am I just going about this all wrong?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en
-~----------~----~----~----~------~----~------~--~---