Usando CKEditor 4 en la última versión a través de NuGet en una aplicación C# (VS - 2019).
Todo parece estar bien !
Pero en la consola se imprimen los siguientes mensajes
[0523/173233.339:INFO:CONSOLE(21)] "[CKEDITOR] Error code: editor-element-conflict. [object Object]", source: file:///blablabla (21) [0523/173233.340:INFO:CONSOLE(21)] "[CKEDITOR] For more information about this error go to https://ckeditor.com/docs/ckeditor4/latest/guide/dev_errors.html#editor-element-conflict", source: file:///blablabla (21)¡Usé el ejemplo de código original de CKEditor y yo también!
<!DOCTYPE html> <!-- Copyright (c) 2019-2022, Geocache Organizer - WolFox. All rights reserved. --> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8"> <title>Title</title> <script src="./Scripts/ckeditor/ckeditor.js"></script> <style> body { overflow: hidden } </style> <!--*********** *** Events *** ************--> <script> function onInstanceReady(evt) { } function OnResize() { } function onChange(e) { } function onDataReady(e) { } function onKeyup(e) { } </script> <!--*************** *** Property *** ****************--> <script> function getData() { } function setData(pData) { } function setBackColor(pColor) { } </script> </head> <body> <textarea class="ckeditor" cols="80" id="HTMLEditor" name="HTMLEditor" rows="10"></textarea> <script> // Replace the <textarea id='HTMLEditor'> with an CKEditor instance. CKEDITOR.replace('HTMLEditor'); CKEDITOR.instances.HTMLEditor.on('instanceReady', onInstanceReady); CKEDITOR.instances.HTMLEditor.on('change', onChange); CKEDITOR.instances.HTMLEditor.on('keyup', onKeyup); </script> </body> </html>¿Alguien tiene una explicación?
Tengo un archivo config.js básico.
¡Gracias por tu ayuda!