I’m trying to integrate a CKEditor with a JSP page (Demo). I have downloaded jar files from here in the CKEditor for Java section and added the ckeditor-java-core-3.5.3.jar file to the project library. I’m following this installation guide but that downloaded zip folder contains no client-side scripts.
It is mentioned there “Attention: client side scripts are not included in this package.” beside the Download zip button of the CKEditor for Java section on the download page. So, where are they available, nowhere? Are there other CKEditors (or FCKEditors) available for JSP to integrate?
That is because you’re installing the Java version of CKEditor, so your editor will be configured through tags like
<%@ taglib uri="http://ckeditor.com" prefix="ckeditor" %>rather than with scripts.If you want to use the full script editor, download the first zip here (Named just
CKEditor) and follow the instructions here.I’ve recently used it in a project I’m working on and had no problems with it, even through the use of jQuery.