2

I'm using the react-ckeditor in project this is load ok. but I need to use ckeditor full version as editor in the page

how could I use react-ckeditor full version not the standard version?

4
  • what happened when you tried to follow the documentation? what was the error message? Commented Jul 15, 2019 at 18:29
  • I didn't get any error and every thing is fine and ckeditor tools is standard and I need the full version not the standard version Commented Jul 15, 2019 at 18:31
  • there are no "standard" or "full" versions in ckeditor.com/ckeditor-5/download Commented Jul 15, 2019 at 18:42
  • i need full package as react component ckeditor Commented Jul 15, 2019 at 18:44

2 Answers 2

1

From the documentation:

By default, the CKEditor 4 React component loads the standard preset of the latest CKEditor 4 release from the CDN when creating the first editor. This behavior can be altered by changing the value of the CKEditor.editorUrl variable to point to the desired CKEditor script location:

CKEditor.editorUrl = 'https://your-website.example/ckeditor/ckeditor.js';

A zip file can be downloaded from https://ckeditor.com/ckeditor-4/download/ and upzipped inside your source code (e.g. inside public/ckeditor-4 folder if using create-react app).

Sign up to request clarification or add additional context in comments.

Comments

1

I was also facing the same issue as I wanted to include all the available options in my toolbar. Turns out all you need to do is mention the type of distribution in your CDN link as full-all, to include full preset together with all other plugins created by CKSource.

I changed it from standard to full-all in my CDN link as given below-

<script src="https://cdn.ckeditor.com/4.16.0/full-all/ckeditor.js"></script>

Also, check the version. This is my source of info: https://cdn.ckeditor.com/

Hope this helps :)

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.