Adding Lines to a Multiline Text Selected From A Check List

Hello,

How can I insert multiple lines to a multiline text field selected from a checklist ?
Every selection from the check list will be inserted with a line feed like below :

  • line a
  • line b
  • line c

Thanks in advance.

[QUOTE=mehmet.akturk;22346]Hello,

How can I insert multiple lines to a multiline text field selected from a checklist ?
Every selection from the check list will be inserted with a line feed like below :

  • line a
  • line b
  • line c

Thanks in advance.[/QUOTE]

What you could try:

create an ajaxevent onchange on the checklist (a drop down I assume?)
then in the php section:

{mymultilinefield}={mymultilinefield} . {mycheckfield} .’
';

where you need to fill in the correct fieldnames of course.