grapesjs-plugin-ckeditor icon indicating copy to clipboard operation
grapesjs-plugin-ckeditor copied to clipboard

This plugin replaces the default Rich Text Editor with the one from CKEditor

Results 26 grapesjs-plugin-ckeditor issues
Sort by recently updated
recently updated
newest added

Hello, look at the new RTE for GrapesJS: Tinymce 6 - https://gjs.market/products/tinymce-6-inline-text-editor Froala - https://gjs.market/products/froala-inline-text-editor

I want to add a component to the rich text toolbar. Does it support the option of customizing the tools toolbar? ![image](https://github.com/GrapesJS/ckeditor/assets/48764359/ff48c646-f15a-4307-9922-55ba3b802e54)

I have config toolbar align but not working. How i can config toolbar align like this https://prnt.sc/26-AhbL4M-tA

### Plugin version Plugin version : 1.0.1 GrapesJs : 0.21.2 (the last one) ### What browser are you using? Version 113.0.5672.126 (Build officiel) (64 bits) ### Reproducible demo link https://grapesjs.com/demo-newsletter-editor.html...

When a Text component is edited by CKeditor its' contents remain encapsulated. But if you import new content into the GrapesJS Editor (or use setComponents method) contents that should be...

Apparently, shared space is not available: https://github.com/GrapesJS/ckeditor/issues/30 Are there any other known issues? Should we update?

CKEditor isn't removed from the DOM after component deselected. It could cause weird bugs like double CKEditor: ![image](https://user-images.githubusercontent.com/37115006/82315547-1d2fa680-99d4-11ea-93f4-c62087499974.png) ![image](https://user-images.githubusercontent.com/37115006/82315496-0d17c700-99d4-11ea-89e7-a15f2943d8b8.png)

When we double click on link icon in fullscreen mode, then press ESC button, you see that whole editor is disabled. Please provide the solution for it. Thanks Issue also...

We are trying to dock/pin the CKEditor to the bottom of the IFrame/Viewing area of grapesjs, the problem is we don't have id's for grapesJS at the time we are...

Hi, if someone looking for solve for issue with new line. I have solution: ``` CKEDITOR.on('instanceCreated', function(e) { e.editor.on('change', function (event) { const selectedText = editor.getSelected(); editor.trigger(`component:update component:input`, selectedText); });...