FCKeditor - Sample

FCKEditor - ColdFusion Component (CFC) - Sample 2

This sample displays a normal HTML form with a FCKeditor with full features enabled; invoked by a ColdFusion Component.
ColdFusion is a registered trademark and product of Macromedia, Inc.

This sample work only with a ColdFusion MX server and higher, because it uses some advantages of this version.
Please try our other ColdFusion Sample Integration.
fckEditor = createObject("component", "/fckeditor/fckeditor"); fckEditor.instanceName = "myEditor"; fckEditor.value = 'This is some sample text. You are using FCKeditor.'; fckEditor.basePath = "/fckeditor/"; fckEditor.width = "100%"; fckEditor.height = 200; fckEditor.create(); // create the editor.