You will want to edit the [[$:/core/ui/EditTemplate/fields]] tiddler. Find 
the below section:

<td class="tc-edit-field-value">
<$edit-text tiddler=<<currentTiddler>> field=<<currentField>> 
placeholder={{$:/language/EditTemplate/Fields/Add/Value/Placeholder}}/>
</td>

replace it with this (the variable set in the $list is so the 
<<currentTiddler>> variable is not changed):

<td class="tc-edit-field-value">
<$list filter="[<currentField>regexp[list$]]" variable="ifEndsWithList" 
emptyMessage="""<$edit-text tiddler=<<currentTiddler>> 
field=<<currentField>> 
placeholder={{$:/language/EditTemplate/Fields/Add/Value/Placeholder}}/>""" >
<$edit-text tag="textarea" class="input" tiddler=<<currentTiddler>> 
field=<<currentField>> 
placeholder={{$:/language/EditTemplate/Fields/Add/Value/Placeholder}}/>
</$list>
</td>

The $list filters for any field name that ends with "list", and the 
tag="textarea" parameter changes the text-edit widget to textarea mode. You 
will need to add some CSS to fix the width value of the text area.

Create a new tiddler (I named mine [[$:/themes/tiddlywiki/editlist/style]] 
), tag it with "$:/tags/Stylesheet" and paste the below into the text field:

.tc-edit-field-value textarea {width: 100%}

Tested on Tiddlywiki.com and works well. Delete the edited tiddler and the 
CSS tiddler to restore the core functionality (fallback to the 
shadow-tiddler).

Best,
Joshua Fontany

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/21b63405-ca63-45c9-a233-cb440a84e4ad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to