I am new to smartclient and ckeditor. I posted this as a reply to an old issue, but maybe this will get me some help. We are trying to upgrade from fckeditor to ckeditor v 3.6.1. I am confused about the changes I need to make in the smartclient js file. When I make the changes and then call up the page, where the editor chould be I get a page not found error. Our old code looked like
All the configuration is in the config.js file. I have update this file with the changes for 3.6.1, but am unsure how to change the smartclient js file.
From what I read on the ckeditor documentation, all I should need, since all configuration is in the config file, is
I know that thisis asking a lot, but the only person who knew the fckeditor code is gone and I have been thrown this. Any help is greatly appreciated.
Code:
function createEditor() { fck = new FCKeditor("myFCKeditor"); fck.BasePath = "/ACES/CKEditor/"; fck.ToolbarSet = "BOE"; fck.Height = "100%"; fck.Width = "100%"; } .... createEditor(); isc.Canvas.create( { ID : "Editor", autoDraw : false, contents : fck.CreateHtml(), height : "100%", width : "100%" } );
From what I read on the ckeditor documentation, all I should need, since all configuration is in the config file, is
Code:
<%@ taglib uri="http://ckeditor.com" prefix="ckeditor" %> <ckeditor:editor basePath="/ACES/CKEditor_3.6.1/" editor="editor1" >
Comment