I have integrated the ckeditor-plugin via <script src="https://unpkg.com/grapesjs-plugin-ckeditor"></script> in my html head. Works fine for the standard text component and others. When using the label component from grapesjs-plugin-forms, I'm getting an error when trying to enter the label text.
It's the same issue as described in https://github.com/GrapesJS/ckeditor/issues/71 . However, I don't know how to apply the there mentioned fix, because I'm just declaring the plugin grapesjs-plugin-ckeditor and I have no access to a variable called CKEDITOR, which would allow me to set CKEDITOR.dtd.$editable.span = 1.
Any ideas? I'd be fine with deactivating ckeditor for the label component and use the standard text editor.
I have integrated the ckeditor-plugin via
<script src="https://unpkg.com/grapesjs-plugin-ckeditor"></script>
in my html head. Works fine for the standard text component and others. When using the label component fromgrapesjs-plugin-forms
, I'm getting an error when trying to enter the label text.It's the same issue as described in https://github.com/GrapesJS/ckeditor/issues/71 . However, I don't know how to apply the there mentioned fix, because I'm just declaring the plugin
grapesjs-plugin-ckeditor
and I have no access to a variable calledCKEDITOR
, which would allow me to setCKEDITOR.dtd.$editable.span = 1
.Any ideas? I'd be fine with deactivating ckeditor for the label component and use the standard text editor.
Regards,