TinyMCE editor problem

2007-01-05 Thread Chad McCue
I am using TinyMCE theme Simple on some of my pages, but when I submit
the form (Using ColdFusion MX 7) the textarea the TinyMCE is attached to
clears out. 
 
The correct information in the textbox before I click the Submit
button is sent to the submit page. I can't have the textbox clear out
because people are thinking the text they enter is being erased and not
saved.


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265831
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: TinyMCE editor problem

2007-01-05 Thread Snake
I guess this is normal, cozz it happens on mine too. 

-Original Message-
From: Chad McCue [mailto:[EMAIL PROTECTED] 
Sent: 05 January 2007 18:01
To: CF-Talk
Subject: TinyMCE editor problem

I am using TinyMCE theme Simple on some of my pages, but when I submit the
form (Using ColdFusion MX 7) the textarea the TinyMCE is attached to clears
out. 
 
The correct information in the textbox before I click the Submit
button is sent to the submit page. I can't have the textbox clear out
because people are thinking the text they enter is being erased and not
saved.




~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265839
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: TinyMCE editor problem

2007-01-05 Thread Chad McCue
There has to be some piece of the JS that runs the tinyMCE that resets
the IFRAME it creates or something.  


Chad McCue
Advanced Media Productions
251 West Central St. Suite 28
Natick MA, 01760
 
[EMAIL PROTECTED]
p: 508.647.5151 ext 16
f: 508.647.5150

-Original Message-
From: Snake [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 05, 2007 2:00 PM
To: CF-Talk
Subject: RE: TinyMCE editor problem

I guess this is normal, cozz it happens on mine too. 

-Original Message-
From: Chad McCue [mailto:[EMAIL PROTECTED]
Sent: 05 January 2007 18:01
To: CF-Talk
Subject: TinyMCE editor problem

I am using TinyMCE theme Simple on some of my pages, but when I submit
the form (Using ColdFusion MX 7) the textarea the TinyMCE is attached to
clears out. 
 
The correct information in the textbox before I click the Submit
button is sent to the submit page. I can't have the textbox clear out
because people are thinking the text they enter is being erased and not
saved.






~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265842
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: TinyMCE editor problem

2007-01-05 Thread Jake Churchill
I'm not sure that it's resetting it so much as it is a display issue 
while the JS is reading and writing everything.  Mine does the same thing.

Chad McCue wrote:
 There has to be some piece of the JS that runs the tinyMCE that resets
 the IFRAME it creates or something.  


 Chad McCue
 Advanced Media Productions
 251 West Central St. Suite 28
 Natick MA, 01760
  
 [EMAIL PROTECTED]
 p: 508.647.5151 ext 16
 f: 508.647.5150

 -Original Message-
 From: Snake [mailto:[EMAIL PROTECTED] 
 Sent: Friday, January 05, 2007 2:00 PM
 To: CF-Talk
 Subject: RE: TinyMCE editor problem

 I guess this is normal, cozz it happens on mine too. 

 -Original Message-
 From: Chad McCue [mailto:[EMAIL PROTECTED]
 Sent: 05 January 2007 18:01
 To: CF-Talk
 Subject: TinyMCE editor problem

 I am using TinyMCE theme Simple on some of my pages, but when I submit
 the form (Using ColdFusion MX 7) the textarea the TinyMCE is attached to
 clears out. 
  
 The correct information in the textbox before I click the Submit
 button is sent to the submit page. I can't have the textbox clear out
 because people are thinking the text they enter is being erased and not
 saved.






 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265850
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: TinyMCE editor problem

2007-01-05 Thread Chad McCue
I have done this as a workaround.

script
function myCustomSaveContent() {
var html = tinyMCE.getContent();
document.FormName.Name_of_TextArea.value = html;
tinyMCE.setContent(html);
return true;
}

tinyMCE.init({
mode : textareas,
theme : simple,
save_callback : myCustomSaveContent
});
/script 


-Original Message-
From: Jake Churchill [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 05, 2007 2:41 PM
To: CF-Talk
Subject: Re: TinyMCE editor problem

I'm not sure that it's resetting it so much as it is a display issue
while the JS is reading and writing everything.  Mine does the same
thing.

Chad McCue wrote:
 There has to be some piece of the JS that runs the tinyMCE that resets

 the IFRAME it creates or something.


 Chad McCue
 Advanced Media Productions
 251 West Central St. Suite 28
 Natick MA, 01760
  
 [EMAIL PROTECTED]
 p: 508.647.5151 ext 16
 f: 508.647.5150

 -Original Message-
 From: Snake [mailto:[EMAIL PROTECTED]
 Sent: Friday, January 05, 2007 2:00 PM
 To: CF-Talk
 Subject: RE: TinyMCE editor problem

 I guess this is normal, cozz it happens on mine too. 

 -Original Message-
 From: Chad McCue [mailto:[EMAIL PROTECTED]
 Sent: 05 January 2007 18:01
 To: CF-Talk
 Subject: TinyMCE editor problem

 I am using TinyMCE theme Simple on some of my pages, but when I 
 submit the form (Using ColdFusion MX 7) the textarea the TinyMCE is 
 attached to clears out.
  
 The correct information in the textbox before I click the Submit
 button is sent to the submit page. I can't have the textbox clear out 
 because people are thinking the text they enter is being erased and 
 not saved.






 



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265854
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


TinyMCE Editor

2006-12-18 Thread Chad McCue
I have installed the TinyMCE editor on my development site, running
windows and ColdFusion 6. I have downloaded the spellchecker plug-in but
can't get it to show up on the editor or work for that matter.
 
Has anyone downloaded the file manager and gotten that to work? I need
some help ASAP on this. I would like to use the TinyMCE editor but due
to my time constraints and the difficulty getting it set up to work I
may have to change my mind.


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264346
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: TinyMCE editor question

2006-12-12 Thread Tom King
Those are conditional statements left in by word: You'll need to tell  
TinyMCE to strip them:
Look at the TinyMCE documentation - there's a config there which  
helps you get towards XHTML compliance - use that in combination with  
parsing the string to strip out all the crap.

T


On 9 Dec 2006, at 00:37, Victor Moore wrote:

 Hi all,

 I have installed TinyMCE editor on a site and while it was easy to  
 install
 and work with, has some issue:
 For example if a user copy and paste content from MS-Word 2003 using
 Firefox, everything looks OK in Firefox but it displays:
 !--[if !supportLists]--◆   !--[endif]-- when viewing the  
 page with
 IE.

 If the same exercise is done using IE all the line breaks are removed.

 Is anything that can be done or is just bad luck using content from  
 MS-Word

 Thanks
 Victor


 PS If anybody has an example cfm page of using FCKeditor, really  
 appreciate.
 I have to fix this ASAP


 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263751
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


TinyMCE editor question

2006-12-08 Thread Victor Moore
Hi all,

I have installed TinyMCE editor on a site and while it was easy to install
and work with, has some issue:
For example if a user copy and paste content from MS-Word 2003 using
Firefox, everything looks OK in Firefox but it displays:
!--[if !supportLists]--$B!(B   !--[endif]-- when viewing the page 
with
IE.

If the same exercise is done using IE all the line breaks are removed.

Is anything that can be done or is just bad luck using content from MS-Word

Thanks
Victor


PS If anybody has an example cfm page of using FCKeditor, really appreciate.
I have to fix this ASAP


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263390
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4