No I do mean CKEditor by the same guys who wrote FCKEditor.

http://ckeditor.com/ 

I downloaded it last night and then I couldn't sleep until I got it to work.

Here's my code that works and I haven't gotten into CKFinder (their
file/image browser) yet, but that's later today.

<html>
<head>
        <title>Sample - CKEditor</title>
        <script type="text/javascript" src="/ckeditor/ckeditor.js"></script>
</head>
<body>
<cfif isdefined("x")>
        <cfset content='#editor1#'>
<cfelse>
        <cfset content='start'>
</cfif>


<cfoutput>      
<form method="post" action="cke.cfm">
        <p>
        My Editor:<br />
        <textarea name="editor1">#content#</textarea>
        <script type="text/javascript">
                CKEDITOR.replace( 'editor1' );
        </script>
        </p>
        <p>
                <input name="x" type="submit" value="Submit" />
        </p>
</form>
</cfoutput>
</body>
</html>

-----Original Message-----
From: Will Swain [mailto:[email protected]] 
Sent: Wednesday, November 11, 2009 4:22 AM
To: cf-talk
Subject: RE: CKEditor


Assuming you mean FCKEditor, it's right there - cftextarea richtext="true"
gives you a FCKEditor textarea. You can mess about with it. Check the
livedocs and go from there.

HTH

Will 

-----Original Message-----
From: Terry Troxel [mailto:[email protected]] 
Sent: 11 November 2009 11:37
To: cf-talk
Subject: CKEditor


Has anyone used this in CF8. I can't find any documentation for Integration
to Coldfusion.

Terry Troxel







~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328255
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to