We have an intranet project where we're implementing ColdFusion and have integrated CKEditor with it so that users can style their own narrative data. That part works great, and we're very happy with it. However, the editor is creating HTML code that's being inserted into our data fields, which throws off our page design:
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
We only found 1 reference to this issue and have seen suggestions to add the statement:
FCKConfig.FullPage = false ;
to our fckconfig.js file, but with this new version of CKEdit, we've only seen config.js instead.
With that in mind, what statement should we add and to which file in order for this issue to stop? Thanks in advance for your feedback on this!
--Derek
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
We only found 1 reference to this issue and have seen suggestions to add the statement:
FCKConfig.FullPage = false ;
to our fckconfig.js file, but with this new version of CKEdit, we've only seen config.js instead.
With that in mind, what statement should we add and to which file in order for this issue to stop? Thanks in advance for your feedback on this!
--Derek
Re: Resolved