RE: TextArea for multi inputs

2006-04-14 Thread Loathe
EMAIL PROTECTED] Sent: Friday, April 14, 2006 11:44 AM To: CF-Talk Subject: TextArea for multi inputs Does anyone know how to use a textarea as a multi input field? F.e. I'v seen a form which uses a textarea to insert mulitple email addresses each separated by

TextArea for multi inputs

2006-04-14 Thread j s
I want to use a textarea form feild to insert multiple values. f.e. I've seen it used to insert muliple email addresses seperated by a carriage return. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237785 Archives:

Re: TextArea for multi inputs

2006-04-14 Thread S . Isaac Dealey
Of course then if you need to pre-populate the textarea, you need to use the same sort of strategy: #ValueList(myQuery.column,chr(13) & chr(10))# -- you may find that you only need one or the other character when embedding those values in the html due to the browser's handling of line breaks. Thi

RE: TextArea for multi inputs

2006-04-14 Thread Coldfusion
Same concept, one TEXTAREA field and on the action page, just parse the Results as a list type field using the carriage return as the delimiter. -Original Message- From: j s [mailto:[EMAIL PROTECTED] Sent: Friday, April 14, 2006 11:44 AM To: CF-Talk Subject: TextArea for multi inputs

RE: TextArea for multi inputs

2006-04-14 Thread Andy Matthews
ailto:[EMAIL PROTECTED] Sent: Friday, April 14, 2006 10:44 AM To: CF-Talk Subject: TextArea for multi inputs Does anyone know how to use a textarea as a multi input field? F.e. I'v seen a form which uses a textarea to insert mulitple email addresses each separated by the carri

Re: TextArea for multi inputs

2006-04-14 Thread Jordan Michaels
j s wrote: > Does anyone know how to use a textarea as a multi input field? F.e. I'v seen > a form which uses a textarea to insert mulitple email addresses each > separated by the carriage return. > On your processing page, you can use something like the following: #i# Ho

Re: TextArea for multi inputs

2006-04-14 Thread Rob Wilkerson
When processing, just treat the form value as a list with chr(13) and chr(10) as its delimiters. On 4/14/06, j s <[EMAIL PROTECTED]> wrote: > Does anyone know how to use a textarea as a multi input field? F.e. I'v seen > a form which uses a textarea to insert mulitple email addresses each > s

RE: TextArea for multi inputs

2006-04-14 Thread Everett, Al \(NIH/NIGMS\) [C]
Just treat the resulting form.variable as a list using CHR(13) and CHR(10) as delimiters. -Original Message- From: j s [mailto:[EMAIL PROTECTED] Sent: Friday, April 14, 2006 11:44 AM To: CF-Talk Subject: TextArea for multi inputs Does anyone know how to use a textarea as a multi input

TextArea for multi inputs

2006-04-14 Thread j s
Does anyone know how to use a textarea as a multi input field? F.e. I'v seen a form which uses a textarea to insert mulitple email addresses each separated by the carriage return. ~| Message: http://www.houseoffusion.com/lists.