in reply to how to add default value using hash value and delimiter to text area in template toolkit
<textarea>Howdy!</textarea>So it looks like you could add the value in your template by using
<textarea rows="4" name="[% element.name %]"> [% element.value %] </textarea>
2) I'm not sure I understand your question. You can 'see' separate values if they are on separate lines in the textarea. You may have to check for CR or LF characters, and to do that you might have to force CR/LF characters by playing with the wrap parameter, such as
<textarea wrap="hard"></textarea>
|
---|