Re: Textarea that uploads images from Word docs behind the scenes.

2006-11-01 Thread Alan Rother
I think What you mean is there is a WYSIWYG editor out there that can do that. FCK and SoEditor have the functionality to allow you to upload images, but I don't beleieve either actually lets you upload the image in the text area... I think they both have you use an upload utility and then

RE: Textarea that uploads images from Word docs behind the scenes.

2006-11-01 Thread Ben Nadel
Xstandard does this I am pretty sure. www.xstandard.com -or- http://www.bennadel.com/blog/tags/15-XStandard-WYSIWYG-blog-entries.htm .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/

RE: Textarea width

2006-05-25 Thread Adkins, Randy
Subject: Re: Textarea width well... close but: form textarea style=width:100%; name=foo rows=12/textarea /form but you prolly knew that. tw On 5/24/06, Marty Johll [EMAIL PROTECTED] wrote: form textarea style=width=100%; name=foo rows=12/textarea /form Marty On 5/24/06

Re: Textarea width

2006-05-24 Thread Marty Johll
form textarea style=width=100%; name=foo rows=12/textarea /form Marty On 5/24/06, Coldfusion [EMAIL PROTECTED] wrote: Is there a way to specify a textarea field's columns to be 100% or the field size? ~|

Re: Textarea width

2006-05-24 Thread Tony
well... close but: form textarea style=width:100%; name=foo rows=12/textarea /form but you prolly knew that. tw On 5/24/06, Marty Johll [EMAIL PROTECTED] wrote: form textarea style=width=100%; name=foo rows=12/textarea /form Marty On 5/24/06, Coldfusion [EMAIL PROTECTED] wrote:

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

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. cfset emailAddys = listToArray ( form.fieldName, '#chr(13)##chr(10)#' ) / 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

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: CFSET variables.CrLf = Chr(13)

RE: TextArea for multi inputs

2006-04-14 Thread Loathe
On the action page you treat the form field's output (form[whatever] or form.whatever) as a list using CRLF as the list delimiter. -- Timothy Heald Analyst, Architect, Developer [EMAIL PROTECTED] W: 202-228-8372 C: 703-300-3911 -Original Message- From: j s [mailto:[EMAIL PROTECTED] Sent:

Re: textarea looping

2004-10-01 Thread Jerry Johnson
It may look like a space between them in HTML (debugging output?), but is it really a line feed or carriage return/line feed? If so, try using chr(13) and chr(10) as list delimiters. Jerry Johnson [EMAIL PROTECTED] 10/01/04 02:35PM ok, so i have been doing only admin stuff this last

Re: textarea looping

2004-10-01 Thread Ben Doom
Um, if they're entering them one per line, the delimiter would be a linebreak character, not a space.Try using 10 and 13 as delimiters, and make sure to trim(). --Ben Stephenie Hamilton wrote: ok, so i have been doing only admin stuff this last year...don't have my books with me and am having

Re: textarea looping

2004-10-01 Thread Stephenie Hamilton
duh!! thanks ben, you da man. steph Um, if they're entering them one per line, the delimiter would be a linebreak character, not a space.Try using 10 and 13 as delimiters, and make sure to trim(). --Ben Stephenie Hamilton wrote: [Todays Threads] [This Message] [Subscription] [Fast

Re: textarea looping

2004-10-01 Thread Stephenie Hamilton
thanks [embarrased grin] steph It may look like a space between them in HTML (debugging output?), but is it really a line feed or carriage return/line feed? If so, try using chr(13) and chr(10) as list delimiters. Jerry Johnson [Todays Threads] [This Message] [Subscription]

RE: TextArea woes

2004-02-23 Thread Douglas.Knudsen
http://search.yahoo.com/search?p=text+area+html+limiting+characters http://search.yahoo.com/search?p=text+area+html+limiting+charactersei=UTF-8fr=fp-tab-web-tcop=msstab ei=UTF-8fr=fp-tab-web-tcop=msstab= so old skool...hehe Doug -Original Message- From: Stuart Kidd [mailto:[EMAIL

RE: TextArea woes

2004-02-23 Thread Greg Luce
This is clean. !DOCTYPE html PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN html head meta http-equiv=content-type content=text/html;charset=iso-8859-1 titleTextArea Character Count Example/title link rel=STYLESHEET href="" type=text/css script language=_javascript_!-- maxKeys = 50; var IE =

RE: TextArea woes

2004-02-23 Thread Stuart Kidd
That's the trick, thanks Doug! :-) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 23 February 2004 18:39 To: CF-Talk Subject: RE: TextArea woes http://search.yahoo.com/search?p=text+area+html+limiting+characters http://search.yahoo.com/search?p=text+area

RE: TextArea woes

2004-02-23 Thread Stuart Kidd
Thanks Greg, got it working, that's a great little one! :-) -Original Message- From: Greg Luce [mailto:[EMAIL PROTECTED] Sent: 23 February 2004 18:47 To: CF-Talk Subject: RE: TextArea woes This is clean. !DOCTYPE html PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN html head meta

RE: TextArea woes

2004-02-23 Thread Greg Luce
You may want to validate the data-length on form submission also. Let me know if you need a hand with that. Greg -Original Message- From: Stuart Kidd [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 4:42 PM To: CF-Talk Subject: RE: TextArea woes Thanks Greg, got it working

RE: textarea field limit

2004-02-17 Thread John Stanley
Sure is, this is what I wrote, but I am sure it can be tweaked to be better;it fires off of the onKeyDown method for a text area function check_input_length(){ var the_counter; the_counter = eval(199 - (document.lookup_form.note_text.value.length + 1)); if (the_counter 0){

RE: textarea field limit

2004-02-17 Thread Pascal Peters
Only in _javascript_ function limitSize(obj,len,label){ if(obj.value.length len){ obj.value = obj.value.slice(0,len); if(label) alert(label + can be max. + len + characters long!); } } You can call this function in the js form validation and/or in the events of the textarea directly:

RE: textarea field limit

2004-02-17 Thread Robert Orlini
Thanks John. I'm new to _javascript_ some what. Is the 199 the limit of the number of characters? RO -Original Message- From: John Stanley [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 17, 2004 8:38 AM To: CF-Talk Subject: RE: textarea field limit Sure is, this is what I wrote

RE: textarea field limit

2004-02-17 Thread John Stanley
yours are called. The counter cell refers to a cell that I used to visually tell the user how many characters they had left to type as they are typing. -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 17, 2004 8:37 AM To: CF-Talk Subject: RE: textarea

Re: textarea field limit

2004-02-17 Thread Stephen Moretti
Nice little script... I was about to write something very similar myself, but now I'm just gonna pinch yours.;oD Thank a lot... Stephen Pascal Peters wrote: Only in _javascript_ function limitSize(obj,len,label){ if(obj.value.length len){ obj.value = obj.value.slice(0,len); if(label)

RE: textarea field limit

2004-02-17 Thread Robertson-Ravo, Neil (RX)
Yep, thats one to noteif you pass the form/field name in as arguments it will more generic... _ From: John Stanley [mailto:[EMAIL PROTECTED] Sent: 17 February 2004 13:47 To: CF-Talk Subject: RE: textarea field limit Yea, that's my arbitrary limit. Was dealing with a sql 6.5 db. You can

RE: textarea field limit

2004-02-17 Thread Robert Orlini
Thanks John all for the advice. RO -Original Message- From: John Stanley [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 17, 2004 8:47 AM To: CF-Talk Subject: RE: textarea field limit Yea, that's my arbitrary limit. Was dealing with a sql 6.5 db. You can expand that number

RE: textarea problem

2003-10-26 Thread Tim Laureska
Thanks Dave and Steven... thought I had tried that once with no success, but anyway... -Original Message- From: Stephen Hait [mailto:[EMAIL PROTECTED] Sent: Sunday, October 26, 2003 12:36 PM To: CF-Talk Subject: Re: textarea problem IS there some secret to displaying a form variable

RE: textarea problem

2003-10-26 Thread Dave Watts
IS there some secret to displaying a form variable in a HTML form - textarea box: I don't get any errors, but nothing shows when I pass the description variable to this text area: TEXTAREA NAME=description ROWS=5 COLS=59 VALUE=#description# scroll=yes/textarea The TEXTAREA field

Re: textarea problem

2003-10-26 Thread Stephen Hait
IS there some secret to displaying a form variable in a HTML form - textarea box: I don't get any errors, but nothing shows when I pass the description variable to this text area: TEXTAREA NAME=description ROWS=5 COLS=59VALUE=#description# scroll=yes/textarea The value displayed in the

RE: TextArea (WYSIWYG) Editor

2003-03-24 Thread Philip Arnold
Would someone be able to suggest a textarea (WYSIWYG) editor that will work in Mac IE 5? ActivEdit from CFDev works on Mac and NS now, and with no plug in Although, the older Mac and NS versions are Java and very limited ~|

RE: textarea line numbering

2003-03-19 Thread Joshua Miller
Just a thought ... You could treat the contents as a list delimited by a line break and prepend each list item with a sequential number. textarea name=textarea cfset i=1 cfloop list=#content# index=ListItem delimiters=#chr(10)##chr(13)# #numberformat(i,00)# #ListItem##chr(10)##chr(13)# cfset

RE: textarea line numbering

2003-03-19 Thread Matthew Walker
Yeah, ideally the numbers wouldn't be editable. Maybe I need to learn flash ;-) -Original Message- From: Joshua Miller [mailto:[EMAIL PROTECTED] Sent: Thursday, 20 March 2003 4:58 p.m. To: CF-Talk Subject: RE: textarea line numbering Just a thought ... You could treat the contents

RE: textarea line numbering

2003-03-19 Thread Buckland, Ramon
Ooh I love a challenge, :-) Here you go matthew line numbers next to a scrollable textarea implemented client side using Javascript, onscroll, onkeyup and some mirrors. http://www.thebuckland.com/staging/line_numbers_for_textarea.html -Original Message- From: Matthew Walker

RE: textarea line numbering

2003-03-19 Thread Matthew Walker
Wow! That's awesome! I can't believe it works so well! (Wait until I think of something a bit harder...) -Original Message- From: Buckland, Ramon [mailto:[EMAIL PROTECTED] Sent: Thursday, 20 March 2003 5:09 p.m. To: CF-Talk Subject: RE: textarea line numbering Ooh I love a challenge

RE: textarea line numbering

2003-03-19 Thread Buckland, Ramon
Subject: RE: textarea line numbering Ooh I love a challenge, :-) Here you go matthew line numbers next to a scrollable textarea implemented client side using Javascript, onscroll, onkeyup and some mirrors. http://www.thebuckland.com/staging/line_numbers_for_textarea.html

RE: textarea line numbering

2003-03-19 Thread Matthew Walker
Here, very roughly mocked up, is the point. http://www.electricsheep.co.nz/lab/css.html -Original Message- From: Buckland, Ramon [mailto:[EMAIL PROTECTED] Sent: Thursday, 20 March 2003 5:26 p.m. To: CF-Talk Subject: RE: textarea line numbering Few bugs in that + line numbers 100

RE: textarea line numbering

2003-03-19 Thread Joshua Miller
To: CF-Talk Subject: RE: textarea line numbering Few bugs in that + line numbers 100 + holding down enter key releasing doesn't update the numbers oh .. and it was only tested in IE, i'll check it later with others (NS, Moz, Galeon and Opera) In theory it is DOM compliant. so should be fine

RE: textarea line numbering

2003-03-19 Thread Joshua Miller
] * -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 1:16 AM To: CF-Talk Subject: RE: textarea line numbering Here, very roughly mocked up, is the point. http

Re: TextArea MS Word

2002-09-17 Thread Jochem van Dieten
Quoting Randell B Adkins [EMAIL PROTECTED]: But if Pasted from MS Word, it transforms the apostrophe into a little square box. A little square box usually means a charset problem. If you have a Word document that gives you this problem, put it up somewhere and I will test it in a unicode

Re: TextArea MS Word

2002-09-17 Thread Gyrus
- Original Message - From: Randell B Adkins [EMAIL PROTECTED] With the TEXTAREA if I manually type the apostrophes, commas, and quotes, then it is retained when saving to the database. But if Pasted from MS Word, it transforms the apostrophe into a little square box.

RE: TextArea MS Word

2002-09-17 Thread Mark Stephenson - Evolution Internet
I have the Full soEditor, It Rocks... With a few minor changes!!! Get the source code and have a play Mark Stephenson New Media Director Evolution Internet T: 0870 757 1631 F: 0870 757 1632 W: www.evolutioninternet.co.uk E: [EMAIL PROTECTED] This email, together with any attachments, is for

RE: TextArea MS Word

2002-09-17 Thread Janine Jakim
We have tried lots of fonts etc for the same problem (we use activepdf) We have found the only solution is to have the person type the information in Notepad(PC) or Simpletext(Mac). I worked extensively with the support from Activepdf on this problem and couldn't come up with a solution. One

soEditor was RE: TextArea MS Word

2002-09-17 Thread S . Isaac Dealey
Out of curiosity ( I'm going to be implementing it soon ), what minor changes? I have the Full soEditor, It Rocks... With a few minor changes!!! Get the source code and have a play Mark Stephenson New Media Director Evolution Internet T: 0870 757 1631 F: 0870 757 1632 W:

Re: textarea

2002-09-17 Thread Darron J. Schall
The following should be of some help to you function limitArea(){ content = document.form_name.text_area_name.value; len = content.length; if (len 500) { content = content.substr(0,500); alert('Your input is limited to 500 characters.');

RE: textarea

2002-09-17 Thread Tim Do
you can limit them to how many characters they type... function TextMaxLength(evt, field) { charCode = evt.keyCode; if (field.length 75) { return false; } } TEXTAREA NAME=notes ROWS=3 COLS=30 WRAP=HARD onKeyPress=return

RE: textarea

2002-09-17 Thread Matthew Friedman
try this code it works great script language=JavaScript !-- !-- Begin function textCounter(field, countfield, maxlimit) { if (field.value.length maxlimit) // if too long...trim it! field.value = field.value.substring(0, maxlimit); // otherwise, update 'characters left' counter else

Re: textarea

2002-09-17 Thread Matthew Walker
I use this in the html head: SCRIPT LANGUAGE=JavaScript // Original: Ronnie T. Moore // Web Site: The JavaScript Source // Dynamic 'fix' by: Nannette Thacker // Web Site: http://www.shiningstar.net // This script and many more are available free online at

RE: textarea

2002-09-17 Thread Nick Varner
With a little mod this will work great...thanks -Original Message- From: Darron J. Schall [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 17, 2002 2:40 PM To: CF-Talk Subject:Re: textarea The following should be of some help to you function limitArea

Re: TextArea MS Word [hail unicode]

2002-09-17 Thread Jochem van Dieten
Randell B Adkins wrote: Using MS Word 2000 or even 97, copying information from a document and pasting it into a TEXTAREA box will lose the formatting such as apostrophes. I am not concerned with the BOLD or Italicize but the apostrophes, commas, and quotes I am concerned about. With

RE: soEditor was RE: TextArea MS Word

2002-09-17 Thread Mark Stephenson - Evolution Internet
and delete the message from your computer without making any copies. -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: 17 September 2002 20:18 To: CF-Talk Subject: soEditor was RE: TextArea MS Word Out of curiosity ( I'm going to be implementing it soon ), what

RE: soEditor was RE: TextArea MS Word

2002-09-17 Thread S . Isaac Dealey
- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: 17 September 2002 20:18 To: CF-Talk Subject: soEditor was RE: TextArea MS Word Out of curiosity ( I'm going to be implementing it soon ), what minor changes? I have the Full soEditor, It Rocks... With a few minor changes!!! Get

RE: TextArea Input

2002-03-20 Thread Clint Tredway
You need to trim() the variable. Clint -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 7:34 AM To: CF-Talk Subject: TextArea Input I have a memo field and I'm using a textarea/textarea to enter the information. It seems to work

Re: TextArea Input

2002-03-20 Thread Paul Giesenhagen
#Trim(form.textfromtextarea)# Before you insert it into the DB ... Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: Thane Sherrington [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, March 20, 2002

RE: TextArea Input

2002-03-20 Thread Rich Wild
you've got whitespace in your code: change it to this: textarea name=text col=120 row=5cfoutput#GetText.Text#/cfoutput/textarea -Original Message- From: Clint Tredway [mailto:[EMAIL PROTECTED]] Sent: 20 March 2002 17:35 To: CF-Talk Subject: RE: TextArea Input You need

RE: TextArea Input

2002-03-20 Thread Kwang Suh
The carriage return and tab you have after the first textarea tab is showing up on the screen. You need to do this: textarea name=text col=120 row=5cfoutput#GetText.Text#/cfoutput/textarea -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20,

RE: TextArea Input

2002-03-20 Thread Thane Sherrington
At 09:35 AM 03/20/2002 -0800, Clint Tredway wrote: You need to trim() the variable. That's what I thought, but it doesn't work. T __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

RE: TextArea Input

2002-03-20 Thread Thane Sherrington
At 03:47 PM 03/20/2002 +, Rich Wild wrote: you've got whitespace in your code: change it to this: textarea name=text col=120 row=5cfoutput#GetText.Text#/cfoutput/textarea Cool. This works. Thanks. T __ Structure your

Re: TextArea Input

2002-03-20 Thread Stephen Moretti
] Sent: Wednesday, March 20, 2002 4:00 PM Subject: RE: TextArea Input At 03:47 PM 03/20/2002 +, Rich Wild wrote: you've got whitespace in your code: change it to this: textarea name=text col=120 row=5cfoutput#GetText.Text#/cfoutput/textarea Cool. This works. Thanks. T

Re: textarea headache

2002-03-20 Thread Dina Hess
Thanks, Conrad. I'll give that a try. Looks like it should do the trick. - Original Message - From: Conrad Classen To: CF-Talk Sent: Tuesday, March 19, 2002 1:42 PM Subject: RE: textarea headache Dina First off. Before writing the data, replace all instances of vbCRLF

RE: textarea headache

2002-03-19 Thread Conrad Classen
Dina First off. Before writing the data, replace all instances of vbCRLF with Chr(10). In JavaScript vbCRLF is rendered as \r\n, and you only require the \n part. Once the field is populated, I find that the best way to reinstate the line breaks Is to do the following: var re = /\\n/g;

RE: textarea and cffile

2002-03-16 Thread Garza, Jeff
SiteObjects' SOEditor2.x will also do the job quite nicely. They have a freeware version as well. We use it extensively for our intranet CMS. Cheers, Jeff Garza -Original Message- From: Gilbert Midonnet To: CF-Talk Sent: 3/15/02 10:12 PM Subject: textarea and cffile I would like to

RE: textarea and cffile

2002-03-15 Thread Tangorre, Michael T.
better check out active edit. :-) -Original Message- From: Gilbert Midonnet [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 16, 2002 12:12 AM To: CF-Talk Subject: textarea and cffile I would like to be able to have users in an intranet submit text for others to see via

RE: TextArea wrapping

2001-11-13 Thread Sicular, Alexander
Wrap textarea wrap=off/soft/hard/virtual Check with w3c for official usage. Good luck, Alexander Sicular Chief Technology Architect Neurological Institute of New York Columbia University as867 [at] columbia {dot} edu |-Original Message- |From: Neil H. [mailto:[EMAIL PROTECTED]]

Re: TextArea wrapping

2001-11-13 Thread Bryan Stevenson
check the wrap attribute...some may have it and other may not (thus defaulting to virtual I think) Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED] - Allaire

RE: TextArea

2001-08-29 Thread Will Swain
1) Can you be more specific? Lets see the code? 2) is gt; -Original Message- From: Neil H. [mailto:[EMAIL PROTECTED]] Sent: 29 August 2001 06:39 To: CF-Talk Subject: TextArea Two things with a text area: 1. I have some text and I have a break in my code but it isn't breaking on my

Re: TextArea

2001-08-29 Thread Neil H.
] Sent: Wednesday, August 29, 2001 6:07 AM Subject: RE: TextArea 1) Can you be more specific? Lets see the code? 2) is gt; -Original Message- From: Neil H. [mailto:[EMAIL PROTECTED]] Sent: 29 August 2001 06:39 To: CF-Talk Subject: TextArea Two things with a text area: 1. I have

RE: TextArea

2001-08-29 Thread Dennis Powers
PROTECTED] Sent: Wednesday, August 29, 2001 6:07 AM Subject: RE: TextArea 1) Can you be more specific? Lets see the code? 2) is gt; -Original Message- From: Neil H. [mailto:[EMAIL PROTECTED]] Sent: 29 August 2001 06:39 To: CF-Talk Subject: TextArea Two things with a text area: 1. I

RE: textarea limit

2001-06-06 Thread phumes1
Hi, Is there a limit to how much you can load into a textarea../textarea using cffile action=READ file=C:\filename.dat variable=textvar? Some of my datafiles can be 1meg or more. I'm trying to create a web-based Text Editor Interface. ~~

Re: textarea

2001-04-25 Thread Heidi Belal
Great! This worked perfectly! ya i meant points, not exactly bullets! i just wanted the same format structure it was entered with! :) Heidi --- Michael Lugassy [EMAIL PROTECTED] wrote: bullet? on textarea? you can translate the chr(13) which is ENTER (linefeed) to BR by using

RE: textarea

2001-04-24 Thread Christopher Olive, CIO
well, you can't techincally put bullets in there, but if you want to save the carriage returns that people use in your textarea, use the WRAP=HARD attribute in the textarea. when outputting, use ParagraphFormat() to do something about the CRs in the output. chris olive, cio cresco technologies

Re: textarea

2001-04-24 Thread Michael Lugassy
bullet? on textarea? you can translate the chr(13) which is ENTER (linefeed) to BR by using ReplaceNoCase(textareafieldname,chr(13),BR,all) I belive you can manage from here. Thanks, Michael Lugassy Interactive Music Ltd. http://www.imvamp.com [EMAIL PROTECTED] - Original Message -

Re: TextArea for IE vs Netscape

2000-12-15 Thread Cami Lawson
: "Michael Thomas" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, December 15, 2000 1:21 AM Subject: Re: TextArea for IE vs Netscape Hmmm I hadnt thought of that one thats most likely. I just ran into this problem again very recently too, so its fresh in my head.

RE: TextArea for IE vs Netscape

2000-12-15 Thread Courtney Payne
Code please... :-) Courtney E. Payne, Developer Fig Leaf Software "We've got you covered" [EMAIL PROTECTED] www.figleaf.com -Original Message- From: Cami Lawson [mailto:[EMAIL PROTECTED]] Sent: Friday, December 15, 2000 10:15 AM To: CF-Talk Subject: Re: TextArea for IE v

Re: TextArea for IE vs Netscape

2000-12-15 Thread Cami Lawson
nbsp;b2/b nbsp;nbsp;nbsp;nbsp;nbsp;input type="submit" value="Submit" /form /CENTER /BODY /HTML - Original Message - From: "Courtney Payne" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, December 15, 2000 9:32 AM Subject: RE: Te

Re: TextArea for IE vs Netscape

2000-12-15 Thread Cami Lawson
Thanks, I moved my form field to the top and it works like a champ! - Original Message - From: "Michael Thomas" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, December 15, 2000 1:21 AM Subject: Re: TextArea for IE vs Netscape Hmmm I hadnt though

RE: TextArea for IE vs Netscape

2000-12-15 Thread Courtney Payne
g" value="D" nbsp;nbsp;b2/b nbsp;nbsp;nbsp;nbsp;nbsp;input type="submit" value="Submit" /form /CENTER /BODY /HTML ----- Original Message - From: "Courtney Payne" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, December 15,

RE: TextArea for IE vs Netscape

2000-12-14 Thread Bob Silverberg
The readonly attribute is only supported in IE (according to my documentation). I wouldn't think that it would cause problems with your page (NS should ignore it), but it could be the culprit. Bob -Original Message- From: Cami Lawson [mailto:[EMAIL PROTECTED]] Sent: December 14, 2000

RE: TextArea for IE vs Netscape

2000-12-14 Thread Michael Thomas
Could you be more specific add some additional code samples??? Mike From: "Bob Silverberg" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: TextArea for IE vs Netscape Date: Thu, 14 Dec 2000 19:07:04 -0500 The readonly attribute is only suppo

Re: TextArea for IE vs Netscape

2000-12-14 Thread avex
this may seem stpid but once we had that problem here. and someone forgot to add a form tag!! adding one fixed the problem.. i am sure this can't be your problem though... ;-) Any ideas why a nice clean textarea with scrollbars and readonly attributes looks fine in

Re: TextArea for IE vs Netscape

2000-12-14 Thread Michael Thomas
was right on top of it when it didnt show up. Netscape is strict like that ;) That could very well be his problem. Mike From: "avex" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: TextArea for IE vs Netscape Date: Fri, 15 Dec 2000 16:47:36 +1000

RE: textarea help

2000-10-31 Thread ibtoad
I think I figured it out. Thanks anyway, Rich -Original Message- From: ibtoad [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 31, 2000 9:33 AM To: CF-Talk Subject: textarea help Ok here is my next question. I have a form page located at: http://www.cfm-resources.com/h/happytoad This

Re: textarea

2000-06-28 Thread Chris Carpenter
just insert in betweentextarea# body#textarea Pavan Kumar Puli WebMaster/IT Manager ABC Interactive http://www.abcinteractive.com.au - Original Message - From: Gregg Kachel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 28, 2000 3:48 AM Subject: textarea Hi, I'm sort

RE: Textarea

2000-06-27 Thread Mark Warrick
Your problem is not ColdFusion-related, it's HTML syntax that you need to learn more about. Check any online manual regarding HTML specs - there's tons of them available. Your current problem will be solved as follows: textarea cols=50 rows=10 name="body" wrap="virtual"#body#/textarea

Re: Textarea

2000-06-27 Thread Chris Michl
Move the BODY variable like this: textarea cols=50 rows=10 name="body" wrap="virtual" font="arial"#body#/textarea - Original Message - From: "Gregg Kachel" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 27, 2000 12:26 PM Subject: Textarea Hi, I'm sort of a newbie with

Re: Textarea

2000-06-27 Thread Kevin Schmidt
Use this textarea cols=50 rows=10 name="body" wrap="virtual" font="arial" #body# /textarea Put the variable between the start and end textarea tags. Kevin Schmidt Internet Services Manager Peterson, WIlliams Bizer Office: 734.995.5000 Mobile: 734.649.4843 - Original Message -

RE: Textarea

2000-06-27 Thread Matthew Jones
try taking out value="#body#" and putting the #body# between your textarea tags like textarea name="body" cols="50" rows="10"cfoutput#body#/cfoutput/textarea -Original Message- From: Gregg Kachel [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 27, 2000 12:27 PM To: [EMAIL PROTECTED]

RE: Textarea

2000-06-27 Thread Sean Daniels
Hi, I'm sort of a newbie with Cold fusion, so I'm probably doing some simple mistake. I can't get my text to show up on a cfquery using textarea tag. Here is my code: textarea cols=50 rows=10 name="body" wrap="virtual" font="arial" value= "#body#"/textarea Wierd thing is if I change it to

Re: Textarea

2000-06-27 Thread Ken Wilson
Try this instead: textarea cols=50 rows=10 name="body" wrap="virtual"#body#/textarea Ken - Original Message - From: Gregg Kachel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 27, 2000 1:26 PM Subject: Textarea Hi, I'm sort of a newbie with Cold fusion, so I'm probably

Re: Textarea

2000-06-27 Thread Joel Firestone
Try textarea cols=50 rows=10 name="body" wrap="virtual" font="arial"#body#/textarea Joel "Gregg Kachel" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... : Hi, I'm sort of a newbie with Cold fusion, so I'm probably doing some : simple mistake. I can't get my text

RE: textarea

2000-06-27 Thread Brian Peddle
textarea name="body" cols="50" rows="10"#variables.job_description#/textarea -Original Message- From: Gregg Kachel [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 27, 2000 1:49 PM To: [EMAIL PROTECTED] Subject: textarea Hi, I'm sort of a newbie with Cold fusion, so I'm probably doing

RE: textarea

2000-06-27 Thread ron
Hi, I'm sort of a newbie with Cold fusion, so I'm probably doing some simple mistake. I can't get my text to show up on a cfquery using textarea tag. Here is my code: textarea cols=50 rows=10 name="body" wrap="virtual" font="arial" value= "#body#"/textarea Wierd thing is if I change it

RE: Textarea

2000-06-27 Thread James Berry
Try this instead: textarea cols=50 rows=10 name="body" wrap="virtual" font="arial"#body#/textarea -Original Message- From: Gregg Kachel [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 27, 2000 1:27 PM To: [EMAIL PROTECTED] Subject: Textarea Hi, I'm sort of a newbie with Cold fusion, so

Re: Textarea

2000-06-27 Thread Joel Richards
Syntax should be like this: textarea cols=50 rows=10 name="body" wrap="virtual" font="arial"#body#/textarea Make sure you surround your variables with cfoutput/cfoutput Hope this helps Joel At 11:26 AM 6/27/00, you wrote: Hi, I'm sort of a newbie with Cold fusion, so I'm probably doing some

RE: textarea

2000-06-27 Thread Dempsey, Timothy F.
Gregg, The textarea tag does not have a "value" attribute (unlike the input type=text which does). Therefore you should say: textarea cols=50 rows=10 name="body" wrap="virtual" font="arial" cfoutput#body#/cfoutput /textarea instead. HTH and Good Luck -- Tim D empsey -Original

Re: Textarea

2000-06-27 Thread KChapman
Textarea doesn't have a value attribute. You have to do this. textarea cols=50 rows=10 name="body" wrap="virtual" font="arial" #body#/textarea --Katrina Katrina Chapman Consultant Ameriquest Mortgage

RE: textarea

2000-06-27 Thread Perez, Bismark
Gregg, the textarea field does not contain the "value" property, move the "#body#" outside the first bracket (just before the closing /textarea) that should work... it will look like, you might have to use the cfoutput tag too... textarea cols=50 rows=10 name="body" wrap="virtual"

RE: textarea

2000-06-27 Thread Philip Arnold - ASP
Hi, I'm sort of a newbie with Cold fusion, so I'm probably doing some simple mistake. I can't get my text to show up on a cfquery using textarea tag. Here is my code: textarea cols=50 rows=10 name="body" wrap="virtual" font="arial" value= "#body#"/textarea Wierd thing is if I change it to

Re: Textarea formatting question

2000-06-27 Thread Adam Cantrell
I just did that last week. I was temporarily putting the #textbody# variable in pre tag, but this string works better for what I was doing #ReplaceNoCase("#textbody#", Chr(13), "br", "ALL")# but I still haven't figured out how to filter out any unwanted tags that could easily cause damage -

Re: Textarea formatting question

2000-06-27 Thread rkeniger
Hi - A quick question - I'm using a few textarea blocks in my form for users to submit large chunks of data to a memo field in an access database - this data to be submitted is formatted with blank lines, tabs, carriage returns, etc. - how do I retain formatting so that when the user views

RE: Textarea problem

2000-05-09 Thread Nagesh Kumar Deva
: Re: Textarea problem In 01A056931BA6D011AE63F84A801204446FA6@KSCMBS41, Howell, Katie ([EMAIL PROTECTED]) in a fit of unbridled passion, wrote: I'm having a problem processing a text area. It seem if a user enters anything with single quotes, double quotes or the percent sign it causes

RE: Textarea problem

2000-05-09 Thread Sean Brown
___ -Original Message- From: Nagesh Kumar Deva [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 09, 2000 1:27 PM To: '[EMAIL PROTECTED]' Subject: RE: Textarea problem try this, in processing form, give #form.req_just# instead form.req_just otherwise u can a

  1   2   >