Error codes
CKEditor 5 Framework logs errors and warnings to the console. The following list contains more detailed descriptions of those issues.
-
Given view was already added to the annotations repository.
-
UI of a given name already registered.
-
UI plugin does not have both #attach and #detach methods.
-
UI of a given name has been not registered.
-
The editor passed to
attachToForm()
must implement theElementApi
interface. -
Cannot get elements with the same id for an attribute element without id.
-
The attribute with given key already exists for the given node.
Parameters
node : Node
key : String
-
The range to change is not flat.
-
Changed node has different attribute value than operation's old attribute value.
Parameters
item : Item
key : String
value : *
-
Thrown when there is an attempt to make changes to the view tree when it is in incorrect state. This may cause some unexpected behaviour and inconsistency between the DOM and the view. This may be caused by:
- calling
change
orforceRender
during rendering process, - calling
change
orforceRender
inside of post-fixer function.
- calling
-
This error is thrown when due to a mistake in how CKEditor 5 was installed or initialized, some of its modules were duplicated (evaluated and executed twice). Module duplication leads to inevitable runtime errors.
There are many situations in which some modules can be loaded twice. In the worst case scenario, you may need to check your project for each of these issues and fix them all.
Trying to add a plugin to an existing build
If you import an existing CKEditor 5 build and a plugin like this:
import ClassicEditor from '@ckeditor/ckeditor5-build-classic'; import Highlight from '@ckeditor/ckeditor5-highlight/src/highlight';
Then your project loads some CKEditor 5 packages twice. How does it happen?
The build package contains a file which is already compiled with webpack. This means that it contains all the necessary code from e.g.
@ckeditor/ckeditor5-engine
and@ckeditor/ckeditor5-utils
.However, the
Highlight
plugin imports some of the modules from these packages, too. If you ask webpack to build such a project, you will end up with the modules being included (and run) twice — first, because they are included inside the build package, and second, because they are required by theHighlight
plugin.Therefore, you must never add plugins to an existing build unless your plugin has no dependencies.
Adding plugins to a build is done by taking the source version of this build (so, before it was built with webpack) and adding plugins there. In this situation, webpack will know that it only needs to load each plugin once.
Read more in the "Installing plugins" guide.
Confused an editor build with an editor implementation
This scenario is very similar to the previous one, but has a different origin.
Let's assume that you wanted to use CKEditor 5 from source, as explained in the "Building from source" section or in the "Quick start" guide of CKEditor 5 Framework.
The correct way to do so is to import an editor and plugins and run them together like this:
import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor'; import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials'; import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph'; import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold'; import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic'; ClassicEditor .create( document.querySelector( '#editor' ), { plugins: [ Essentials, Paragraph, Bold, Italic ], toolbar: [ 'bold', 'italic' ] } ) .then( editor => { console.log( 'Editor was initialized', editor ); } ) .catch( error => { console.error( error.stack ); } );
However, you might have mistakenly imported a build instead of the source
ClassicEditor
. In this case your imports will look like this:import ClassicEditor from '@ckeditor/ckeditor5-build-classic'; import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials'; import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph'; import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold'; import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
This creates the same situation as in the previous section because you use a build together with source plugins.
Remember:
@ckeditor/ckeditor5-build-*
packages contain editor builds and@ckeditor/ckeditor5-editor-*
contain source editors.Loading two or more builds on one page
If you use CKEditor 5 builds, you might have loaded two (or more)
ckeditor.js
files on one web page. Check your web page for duplicated<script>
elements or make sure your page builder/bundler includes CKEditor only once.If you want to use two different types of editors at once, see the "Using two different editors" section.
Using outdated packages
Building CKEditor 5 from source requires using multiple npm packages. These packages have their dependencies to other packages. If you use the latest version of, for example,
@ckeditor/ckeditor5-editor-classic
with an outdated version of@ckeditor/ckeditor5-image
, npm or yarn will need to install two different versions of@ckeditor/ckeditor5-core
because@ckeditor/ckeditor5-editor-classic
and@ckeditor/ckeditor5-image
may require different versions of the core package.The solution to this issue is to update all packages to their latest version. We recommend using tools like
node-check-updates
which simplify this process.Conflicting version of dependencies
This is a special case of the previous scenario. If you use CKEditor 5 with some third-party plugins, it may happen that even if you use the latest versions of the official packages and the latest version of these third-party packages, there will be a conflict between some of their dependencies.
Such a problem can be resolved by either downgrading CKEditor 5 packages (which we do not recommend) or asking the author of the third-party package to upgrade its depdendencies (or forking their project and doing this yourself).
Note: All official CKEditor 5 packages (excluding integrations and
ckeditor5-dev-*
packages) are released in the same major version. This is — in thex.y.z
, thex
is the same for all packages. This is the simplest way to check whether you use packages coming from the same CKEditor 5 version. You can read more about versioning in the Versioning policy guide.Packages were duplicated in
node_modules
In some situations, especially when calling
npm install
multiple times, it may happen that npm will not correctly "deduplicate" packages.Normally, npm deduplicates all packages so, for example,
@ckeditor/ckeditor5-core
is installed only once innode_modules/
. However, it is known to fail to do so from time to time.We recommend checking if any of the steps listed below help:
rm -rf node_modules && npm install
to make sure you have a cleannode_modules/
directory. This step is known to help in most cases.- If you use
yarn.lock
orpackage-lock.json
, remove it beforenpm install
. - Check whether all CKEditor 5 packages are up to date and reinstall them
if you changed anything (
rm -rf node_modules && npm install
).
If all packages are correct and compatible with each other, the steps above are known to help. If not, you may try to check with
npm ls
how many times packages like@ckeditor/ckeditor5-core
,@ckeditor/ckeditor5-engine
and@ckeditor/ckeditor5-utils
are installed. If more than once, verify which package causes that. -
An internal Cloud Services error occurred.
-
Reconnection error.
-
Unique
collaboration.channelId
configuration is required for defining name for data stores. Note that application instances with the same channelId will share data each other. -
This item's id should be a string.
-
This item already exists in the collection.
-
The index number has invalid value.
-
The collection cannot be bound more than once.
-
Index or id must be given.
-
Item not found.
-
Command does not exist.
Parameters
commandName : String
Name of the command.
-
Cannot set not existing comment thread as an active. Check if comment thread of the given id is added to the repository.
-
Cannot set not attached comment thread as an active. Comment thread has to be attached to the target element to set it as active.
-
Cannot set adapter more than once.
-
Adding comment threw an error.
-
Cannot add Comment to not existing CommentThread.
-
Comment author is not defined in Users plugin.
-
Target is neither:
* a DOM element * {module:utils/dom/rect~Rect a rect instance} * a callback that returns one fo above
-
Cannot attach not existing comment thread.
-
CommentThread with a given id is already added to the repository.
-
Fetching a comment thread failed.
-
Comment id has to be a string.
-
Comment author id has to be a string.
-
Comment content has to be a string.
-
CommentThread id has to be a string.
-
Comment id has to be a string.
-
Target is required to open new comment thread.
-
Comment thread with given id is not added to the editor nor adapter is defined. See https://ckeditor.com/docs/ckeditor5/latest/features/collaboration/comments/integrate-comments-with-application.html.
-
Comment thread with given id is not added to the editor nor adapter.getCommentThread() is defined. See https://ckeditor.com/docs/ckeditor5/latest/features/collaboration/comments/integrate-comments-with-application.html.
-
Removing comment resulted in an error.
-
Cannot remove comment from not existing CommentThread.
-
Cannot remove not existing Comment.
-
Cannot remove not existing comment thread.
-
Comment content has to be a string.
-
Cannot update comment of not existing CommentThread.
-
Cannot update not existing Comment.
-
The item already exists in the component factory.
Parameters
name : String
The name of the component.
-
The required component is not registered in the component factory. Please make sure the provided name is correct and the component has been correctly added to the factory.
Parameters
name : String
The name of the missing component.
-
Cannot add multiple editors to the context which is created by the editor.
-
Only a constructor function is allowed as a context plugin.
-
Only a plugin marked as a context plugin is allowed to be used with a context.
-
Trying to add configuration of the same view more than once.
-
Trying to remove the configuration of the view not defined in the stack.
-
Trying to show a stack that does not exist.
-
Trying to register and alias for a dispatcher that nas not been registered.
-
This error occurs when a text node's attribute is to be downcasted by
Attribute to Attribute converter
. In most cases it is caused by converters misconfiguration when only "generic" converter is defined:editor.conversion.for( 'downcast' ).attributeToAttribute( { model: 'attribute-name', view: 'attribute-name' } ) );
and given attribute is used on text node, for example:
model.change( writer => { writer.insertText( 'Foo', { 'attribute-name': 'bar' }, parent, 0 ); } );
In such cases, to convert the same attribute for both
Element
andText
nodes, text specificAttribute to Element converter
with higher priority must also be defined:editor.conversion.for( 'downcast' ).attributeToElement( { model: { key: 'attribute-name', name: '$text' }, view: ( value, writer ) => { return writer.createAttributeElement( 'span', { 'attribute-name': value } ); }, converterPriority: 'high' } ) );
-
Trying to add a converter to an unknown dispatchers group.
-
Trying to register a group name that has already been registered.
-
Cannot get data from a non-existing root. This error is thrown when DataController#get() method is called with non-existent root name. For example, if there is an editor instance with only
main
root, callingget
like:data.get( { rootName: 'root2' } );
will throw this error.
-
Cannot init data on a non-existing root. This error is thrown when DataController#init() method is called with non-existent root name. For example, if there is an editor instance with only
main
root, callinginit
like:data.init( { main: '<p>Foo</p>', root2: '<p>Bar</p>' } );
will throw this error.
-
Cannot set data on a non-existing root. This error is thrown when DataController#set() method is called with non-existent root name. For example, if there is an editor instance with only
main
root, callingset
like:data.set( { main: '<p>Foo</p>', root2: '<p>Bar</p>' } );
will throw this error.
-
Cannot detach document node.
-
Only operations with matching versions can be applied.
Parameters
operation : Operation
-
Restoring gravity for an unknown UID is not possible. Make sure you are using a correct UID obtained from the
overrideSelectionGravity
to restore.Parameters
uid : String
The unique identifier returned by
_overrideGravity
.
-
Range from document selection starts or ends at incorrect position.
Parameters
range : Range
-
The
config.initialData
option cannot be used together with initial data passed as the first parameter ofEditor.create()
. -
Cannot update the source element of a detached editor.
The
updateSourceElement()
method cannot be called if you did not pass an element toEditor.create()
. -
A DOM element used to create the editor (e.g.
InlineEditor.create()
) has already been used to create another editor instance. Make sure each editor is created with an unique DOM element.Parameters
element : HTMLElement
DOM element that caused the collision.
-
The
EditorUI#\_editableElements
property has been deprecated and will be removed in the near future. Please usesetEditableElement()
andgetEditableElement()
methods instead.Parameters
editorUI : EditorUI
Editor UI instance the deprecated property belongs to.
-
This error is thrown when trying to pass a
<textarea>
element to acreate()
function of an editor class.The only editor type which can be initialized on
<textarea>
elements is classic editor. This editor hides the passed element and inserts its own UI next to it. Other types of editors reuse the passed element as their root editable element and therefore<textarea>
is not appropriate for them. Use a<div>
or another text container instead:<div id="editor"> <p>Initial content.</p> </div>
-
You need to enable an upload adapter in order to be able to upload files.
This warning shows up when
FileRepository
is being used without definining an upload adapter.If you see this warning when using one of the CKEditor 5 Builds it means that you did not configure any of the upload adapters available by default in those builds.
See the comprehensive "Image upload overview" to learn which upload adapters are available in the builds and how to configure them.
If you see this warning when using a custom build there is a chance that you enabled a feature like
ImageUpload
, orImageUploadUI
but you did not enable any upload adapter. You can choose one of the existing upload adapters listed in the "Image upload overview".You can also implement your own image upload adapter.
-
Problem with decoding Base64 image data.
-
Api address must be provided as the third argument.
-
File must be provided as the first argument.
-
Token must be provided as the second argument.
-
Uploading file failed.
-
The
config.finishEditing.action
must be a function. -
Provided value as an option for
FontSize
seems to invalid.See valid examples described in the plugin configuration.
-
If
config.fontSize.supportAllValues
istrue
, you need to use numerical values as font size options.See valid examples described in the plugin configuration.
Parameters
presets : Array.<String>
Invalid values.
-
Cannot attach the same annotation twice.
-
Cannot detach a UI if it is not attached.
-
Cannot switch Annotations UI to
InlineAnnotations
when usingContext
. -
Insertion position is invalid.
-
An internal error occured during merging insertion content with siblings. The insertion position should equal to the merge position.
-
Date format must be a function.
-
Letters should be bootstrapped on an
HTMLElement
element.const element = document.createElement( 'div' ); letters.bootstrap( element );
or:
const element = document.createElement( 'div' ); Letters.create( element, config ) .then( letters => {} );
-
LettersUI is already created.
-
Invalid license key. Please contact our customer support at https://ckeditor.com/contact/.
-
LivePosition's root has to be an instance of RootElement.
-
The
Locale#language
property was deprecated and will be removed in the near future. Please use theuiLanguage
andcontentLanguage
properties instead. -
Cannot use a destroyed marker instance.
-
The callback used for obtaining mention autocomplete feed thrown and error and the mention UI was hidden or not displayed at all.
-
The feed item ID must start with the marker character.
Correct mention feed setting:
mentions: [ { marker: '@', feed: [ '@Ann', '@Barney', ... ] } ]
Incorrect mention feed setting:
mentions: [ { marker: '@', feed: [ 'Ann', 'Barney', ... ] } ]
See
MentionConfig
. -
The marker must be a single character.
-
The marker must be a single character.
-
Merge operation specifies wrong number of nodes to move.
-
Merge source position is invalid. The element to be merged must have a parent node.
-
Merge target position is invalid. The element to be merged must have a parent node.
-
Model#createPositionAt()
requires the offset to be specified when the first parameter is a model item. -
A root with the specified name already exists.
Parameters
doc : Document
name : String
-
Given offset cannot be found in the node list.
Parameters
offset : Number
nodeList : NodeList
Stringified node list.
-
You can not make a position after a root element.
Parameters
root : Item
-
You can not make a position before a root element.
Parameters
root : Item
-
Cannot create position for document. Root with specified name does not exist.
Parameters
rootName : String
-
Position parent have to be a model element or model document fragment.
-
Position path must be an array with at least one item.
Parameters
path
-
Position root is invalid.
Positions can only be anchored in elements or document fragments.
-
Cannot set selection focus if there are no ranges in selection.
-
selection.setTo requires the second parameter when the first parameter is a node.
-
Given
length
value is incorrect. -
Given
offsetInText
value is incorrect. -
Neither boundaries nor starting position of a
TreeWalker
have been defined. -
Cannot move a node from a document to a different tree. It is forbidden to move a node that was already in a document outside of it.
-
Trying to move a range of nodes into one of nodes from that range.
-
The nodes which should be moved do not exist.
-
Trying to move a range of nodes into the middle of that range.
-
Cannot attach narrow sidebar twice.
-
Cannot detach not attached sidebar.
-
Given index cannot be found in the node list.
-
Trying to insert an object which is not a Node instance.
-
Missing container element.
-
Properties must be unique.
-
Binding multiple observables only possible with callback.
-
Cannot bind the same property more than once.
-
Cannot bind multiple properties and use a callback in one binding.
-
Binding one attribute to many observables only possible with one attribute.
-
Invalid argument syntax in
to()
. -
The number of properties must match.
-
All properties must be strings.
-
Cannot override an existing property.
This error is thrown when trying to set an property with a name of an already existing property. For example:
let observable = new Model(); observable.property = 1; observable.set( 'property', 2 ); // throws observable.set( 'property', 1 ); observable.set( 'property', 2 ); // ok, because this is an existing property.
-
Properties must be strings.
-
Cannot decorate an undefined method.
Parameters
object : Object
The object which method should be decorated.
methodName : String
Name of the method which does not exist.
-
Trying to move a range which starts and ends in different element.
-
Trying to remove a range which starts and ends in different element.
-
The message must be a string.
-
If a plugin is a context plugin, all plugins it requires should also be context plugins instead of plugins. In other words, if one plugin can be used in the context, all its requirements should also be ready to be used in the context. Note that the context provides only a part of the API provided by the editor. If one plugin needs a full editor API, all plugins which require it are considered as plugins that need a full editor API.
Parameters
plugin : String
The name of the required plugin.
requiredBy : String
The name of the parent plugin.
-
It was not possible to load the plugin.
This is a generic error logged to the console when a JavaSript error is thrown during the initialization of one of the plugins.
If you correctly handled the promise returned by the editor's
create()
method (like shown below), you will find the original error logged to the console, too:ClassicEditor.create( document.getElementById( 'editor' ) ) .then( editor => { // ... } ) .catch( error => { console.error( error ); } );
Parameters
plugin : String
The name of the plugin that could not be loaded.
-
Two plugins with the same
pluginName
were loaded. This will lead to runtime conflicts between these plugins.In practice, this warning usually means that new plugins were added to an existing CKEditor 5 build. Plugins should always be added to a source version of the editor (
@ckeditor/ckeditor5-editor-*
), not to an editor imported from one of the@ckeditor/ckeditor5-build-*
packages.Check your import paths and the list of plugins passed to
Editor.create()
or specified inEditor.builtinPlugins
.The second option is that your
node_modules/
directory contains duplicated versions of the same CKEditor 5 packages. Normally, on clean installations, npm deduplicates packages innode_modules/
, so it may be enough to callrm -rf node_modules && npm i
. However, if you installed conflicting versions of packages, their dependencies may need to be installed in more than one version which may lead to this warning.Technically speaking, this error occurs because after adding a plugin to an existing editor build dependencies of this plugin are being duplicated. They are already built into that editor build and now get added for the second time as dependencies of the plugin you are installing.
Read more about installing plugins.
Parameters
pluginName : String
The duplicated plugin name.
plugin1 : function
The first plugin constructor.
plugin2 : function
The second plugin constructor.
-
Some plugins are not available and could not be loaded.
Plugin classes (constructors) need to be provided to the editor before they can be loaded by name. This is usually done in CKEditor 5 builds by setting the
builtinPlugins
property.If you see this warning when using one of the CKEditor 5 Builds, it means that you try to enable a plugin which was not included in that build. This may be due to a typo in the plugin name or simply because that plugin is not a part of this build. In the latter scenario, read more about custom builds.
If you see this warning when using one of the editor creators directly (not a build), then it means that you tried loading plugins by name. However, unlike CKEditor 4, CKEditor 5 does not implement a "plugin loader". This means that CKEditor 5 does not know where to load the plugin modules from. Therefore, you need to provide each plugin through reference (as a constructor function). Check out the examples in "Building from source".
Parameters
plugins : Array.<String>
The name of the plugins which could not be loaded.
-
The plugin is not loaded and could not be obtained.
Plugin classes (constructors) need to be provided to the editor and must be loaded before they can be obtained from the plugin collection. This is usually done in CKEditor 5 builds by setting the
builtinPlugins
property.Note: You can use
editor.plugins.has()
to check if plugin was loaded.Parameters
plugin : String
The name of the plugin which is not loaded.
-
Cannot load a plugin because one of its dependencies is listed in the
removePlugins
option.Parameters
plugin : String
The name of the required plugin.
requiredBy : String
The name of the parent plugin.
-
The position's path is incorrect. This means that a position does not point to a correct place in the tree and hence, some of its methods and getters cannot work correctly.
Note: Unlike DOM and view positions, in the model, the position's parent is always an element or a document fragment. The last offset in the position's path is the point in this element where this position points.
Read more about model positions and offsets in the Editing engine architecture guide.
Parameters
position : Position
The incorrect position.
-
Cannot get descriptor before build.
-
At least one range has to be passed to
Range.\_createFromRanges()
. -
Trying to use
editor.setData()
oreditor.data.set()
in real-time collaboration. Re-setting data in real-time collaboration usually means a mistake (incorrect integration or plugin). Using it may overwrite local (not yet synchronized) changes on remote clients. If you tried to set editor initial data, useinitialData
configuration option instead. If you tried to set editor data in a plugin, consider applying the changes through theWriter
in amodel.change()
block. If you understand effects of usingeditor.data.set()
in real-time collaboration and want to suppress this error, setsuppressErrorInCollaboration
flag totrue
in the second parameter ofeditor.data.set()
call:editor.data.set( '<p>Your data</p>', { suppressErrorInCollaboration: true } )
. -
Server response error.
-
Connecting with the server resulted in error.
-
Trying to set initial data to initialized document.
-
Attempting to init data on a non-existing root.
-
Connecting to the session resulted in an error.
-
An incorrect operation came from the server.
-
Internal CollaborativeEditingService error.
-
Sending update to the server threw an error.
-
Element to change has different name than operation's old name.
-
Given position is invalid or node after it is not instance of Element.
-
Unknown type passed to Renderer.markToSync.
-
The attribute with given key already exists for the given node.
Parameters
root : RootElement
key : String
-
The element to change is not a root element.
Parameters
root : RootElement
key : String
value : *
-
The attribute which should be removed does not exists for the given node.
Parameters
root : RootElement
key : String
value : *
-
Cannot create RootAttributeOperation for document. Root with specified name does not exist.
Parameters
rootName : String
-
Cannot extend an item which was not registered yet.
This error happens when a plugin tries to extend the schema definition of an item which was not registered yet.
Parameters
itemName
The name of the model element which is being extended.
-
A single item cannot be registered twice in the schema.
This situation may happen when:
- Two or more plugins called
register()
with the same name. This will usually mean that there is a collision between plugins which try to use the same element in the model. Unfortunately, the only way to solve this is by modifying one of these plugins to use a unique model element name. - A single plugin was loaded twice. This happens when it is installed by npm/yarn in two versions
and usually means one or more of the following issues:
- a version mismatch (two of your dependencies require two different versions of this plugin),
- incorrect imports (this plugin is somehow imported twice in a way which confuses webpack),
- mess in
node_modules/
(rm -rf node_modules/
may help).
Note: Check the logged
itemName
to better understand which plugin was duplicated/conflicting.Parameters
itemName
The name of the model element that is being registered twice.
- Two or more plugins called
-
The node after the merge position must be an element.
-
The node before the merge position must be an element.
-
Missing container element.
-
Missing positioned container for the editor with a sidebar.
-
Container element is not a HTMLElement.
-
The
config.simpleUpload.uploadUrl
configuration required by theSimpleUploadAdapter
is missing. Make sure the correct URL is specified for the image upload to work properly. -
The name "All" for a special category group cannot be used because it is a special category that displays all available special characters.
-
Graveyard position invalid.
-
Split operation specifies wrong number of nodes to move.
-
Split position is invalid.
-
Cannot split root element.
-
Cannot download new token from the provided url.
-
A
tokenUrl
must be provided as the first constructor argument. -
There was a problem processing the configuration of the toolbar. The item with the given name does not exist so it was omitted when rendering the toolbar.
This warning usually shows up when the
Plugin
which is supposed to provide a toolbar item has not been loaded or there is a typo in the configuration.Make sure the plugin responsible for this toolbar item is loaded and the toolbar configuration is correct, e.g.
Bold
is loaded for the'bold'
toolbar item.You can use the following snippet to retrieve all available toolbar items:
Array.from( editor.ui.componentFactory.names() );
Parameters
name : String
The name of the component.
-
Suggestion to accept does not exist.
-
Cannot set an adapter more than once.
-
Adapter not set or is missing
getSuggestion()
method. -
Trying to enable command that does not exist.
-
Suggestion to discard does not exist.
-
Suggestion marker data does not match loaded suggestion data.
-
Suggestion with given id not found.
-
User with given id not found.
-
An incorrect value was passed to the translation function. This was probably caused by an incorrect message interpolation of a plural form. Note that for messages supporting plural forms the second argument of the
t()
function should always be a number or an array with a number as the first element. -
You have exhausted the trial usage limit. You need to restart the editor now. Please contact our customer support to get a full access at https://ckeditor.com/contact/.
-
The number of children in extended definition does not match.
-
Attempting to revert a template which has not been applied yet.
-
Node definition cannot have the "tag" and "text" properties at the same time. Node definition must have either "tag" or "text" when rendering a new Node.
-
This View has already been rendered.
-
All event names must be strings.
-
An unexpected error occurred inside the CKEditor 5 codebase. This error will look like the original one to make the debugging easier.
This error is only useful when the editor is initialized using the
Watchdog
feature. In case of such error (or anyCKEditorError
error) the watchdog should restart the editor. -
Updating comment resulted in an error.
-
Api address must be provided.
-
Token must be provided.
-
User with a given id is already added.
-
The id must be a string.
-
Cannot add a local user more than once.
-
Cannot add an undefined user as a local user.
-
Incorrect conversion result was dropped.
Model range should be a conversion result.
-
View#createPositionAt()
requires the offset to be specified when the first parameter is a view item. -
Cannot add children to
EmptyElement
. -
The node's parent does not contain this node. It means that the document tree is corrupted.
-
You can not make a position after a root.
Parameters
root : Node
-
You cannot make a position before a root.
Parameters
root : Node
-
The inline filler node was lost. Most likely, something overwrote the filler text node in the DOM.
-
Selection range set to an object that is not an instance of
Range
. -
Cannot set selection focus if there are no ranges in selection.
-
Cannot set selection to given place.
-
selection.setTo requires the second parameter when the first parameter is a node.
-
Given length value is incorrect.
-
Given offsetInText value is incorrect.
-
Neither boundaries nor starting position have been defined.
-
Cannot add children to
UIElement
. -
Trying to break an element which is not a container element.
-
Trying to break root element.
-
Cannot break inside EmptyElement instance.
-
Cannot break inside UIElement instance.
-
Inserted nodes should be valid to insert. of AttributeElement, ContainerElement, EmptyElement, UIElement, Text.
-
Position's parent container cannot be found.
-
Range container is invalid. This can happen if range start and range end positions are not placed inside same container or parent container for these positions cannot be found.
-
Element before and after given position cannot be merged.
-
Attribute element need to be instance of attribute element.
-
Attribute element need to be instance of attribute element.
-
Class and style attributes should be handled separately in
ViewConsumable#add()
.What you have done is trying to use:
consumables.add( { attributes: [ 'class', 'style' ] } );
While each class and style should be registered separately:
consumables.add( { classes: 'some-class', styles: 'font-weight' } );
-
Cannot add plugin with no
reconnect()
method. -
The authentication
cloudServices.tokenUrl
configuration is required for creating a websocket connection. -
The
cloudServices.webSocketUrl
configuration is required for creating a websocket connection in the real-time collaboration.ClassicEditor.create( document.createElement( 'div' ), { cloudServices: { webSocketUrl: "YOUR_WEBSOCKET_URL" // ... } // ... } );
-
Plugin is already registered.
-
Cannot attach wide sidebar twice.
-
Cannot detach not attached sidebar.
-
Toolbar with the given id was already added.
Parameters
toolbarId
Toolbar id.
-
Marker with provided name already exists.
-
Range parameter is required when adding a new marker.
-
The
options.usingOperation
parameter is required when adding a new marker. -
Trying to use a writer outside a
change()
orenqueueChange()
blocks.The writer can only be used inside these blocks which ensures that the model can only be changed during such "sessions".
-
Node after merge position must be an element.
-
Node before merge position must be an element.
-
Range is going to be moved within not the same document. Please use insert instead.
-
Invalid range to move.
-
Range to move is not flat.
-
Trying to remove marker which does not exist.
-
Trying to rename an object which is not an instance of Element.
-
Element with no parent can not be split.
-
Trying to unwrap an element which has no parent.
-
Marker with provided name does not exists.
-
One of the options is required - provide range, usingOperations or affectsData.
-
Element to wrap with is already attached to a tree model.
-
Element to wrap with is not empty.
-
Range to wrap is not flat.