We use smartclient as our application front end and have been using FCKeditor as part of the application. In the smartclient js code we define the editor as
We then call this function as
and with this line in the jsp
We have moved the new jar file into the javalibs folder.
We are having a hard time implementing the new ckeditor. Just changing the fck.BasePath to the new path and changing the jsp to include the new location does not work. All of the documentation I have found here has examples implementing this within html code. Since we have no html code, just the smartclient js code, I am wondering if anyone has any ideas of what needs to be done in the smartclient code to get the new editor to appear? Thanks.
function createEditor() { fck = new FCKeditor("myFCKeditor"); fck.BasePath = "/ACES/CKEditor/"; fck.ToolbarSet = "BOE"; fck.Height = "100%"; fck.Width = "100%"; }
We then call this function as
createEditor(); isc.Canvas.create( { ID : "Editor", autoDraw : false, contents : fck.CreateHtml(), height : "100%", width : "100%" } );
and with this line in the jsp
<%@include file="../../../CKEditor/fckeditor.js" %>
We have moved the new jar file into the javalibs folder.
We are having a hard time implementing the new ckeditor. Just changing the fck.BasePath to the new path and changing the jsp to include the new location does not work. All of the documentation I have found here has examples implementing this within html code. Since we have no html code, just the smartclient js code, I am wondering if anyone has any ideas of what needs to be done in the smartclient code to get the new editor to appear? Thanks.