RE: saving textarea input to rtf

2003-06-12 Thread Bryan Love
PM To: CF-Talk Subject: saving textarea input to rtf Hi, Somewhat of a newbie question I expect. I have to save input from a textarea, in which the user has the opportunity to alter the text in the area(e.g. bold, italic), into an rtf file. That is to say, I need to save what the user sees

RE: saving textarea input to rtf

2003-06-12 Thread Philip Arnold
I have to save input from a textarea, in which the user has the opportunity to alter the text in the area(e.g. bold, italic), into an rtf file. That is to say, I need to save what the user sees in the textarea into an rtf file so that when the user opens the rtf file, from say Word the bold

Re: saving textarea input to rtf

2003-06-12 Thread Andrew Henry
the text in the text area, and I need to save it as rtf. Thanks for any advice Cheers, Andrew - Original Message - From: Bryan Love [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June 12, 2003 1:07 PM Subject: RE: saving textarea input to rtf ??? As far as I know you

RE: saving textarea input to rtf

2003-06-12 Thread Douglas.Knudsen
: Re: saving textarea input to rtf Hi Bryan, According to this article I can, though I haven't yet got it working myself it seems possible. http://www.oreillynet.com/pub/a/javascript/2001/12/21/js_toolbar.html I know the UI functionality comes from JavaScript but everything else is done with CF

saving textarea input to rtf

2003-06-11 Thread Andrew Henry
Hi, Somewhat of a newbie question I expect. I have to save input from a textarea, in which the user has the opportunity to alter the text in the area(e.g. bold, italic), into an rtf file. That is to say, I need to save what the user sees in the textarea into an rtf file so that when the user

TextArea Input

2002-03-20 Thread Thane Sherrington
I have a memo field and I'm using a textarea/textarea to enter the information. It seems to work fine, and the data looks good in the table, but when I bring it back up to edit it, the text shows a large whitespace before it. So I have code like this. textarea name=text col=120 row=5

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
9:33 AM Subject: TextArea Input I have a memo field and I'm using a textarea/textarea to enter the information. It seems to work fine, and the data looks good in the table, but when I bring it back up to edit it, the text shows a large whitespace before it. So I have code like

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
, 2002 8: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 fine, and the data looks good in the table, but when I bring it back up to edit it, the text shows a large whitespace before it. So I have code like

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