> TW has one text field for a user name <<options txtUserName>>. > How can I replace this TextField with a ComboBox with a list of > defined users and change the txtUserName-Value with onChange-Event?
http://www.TiddlyTools.com/#ListboxPlugin http://www.TiddlyTools.com/#ListboxPluginInfo For your use-case, you can create a simple combo box that sets "txtUserName" from a static list of users: <<select =txtUserName Me You SomeoneElse>> or, you could list the usernames as a space-separated list in another tiddler (e.g, "UserNames"), and then write: <<select =txtUserName +UserNames>> or, you could create a separate tiddler for each user, where the tiddler title is the username and each tiddler is tagged with, for example, "user". Then, you can write: <<select =txtUserName =user>> enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios -- 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.

