ckeditor5 Questions
2
I've notice when extracting the data from the editor it filters some classes and styles.
I want to use the exact same styling as the editor uses.
So, i have 2 problems i need to solve.
How can i...
2
Solved
I'm trying to update some initialized CKEditors but it doesn't work.
In CKEditor 4 it was:
for(var instanceName in CKEDITOR.instances)
CKEDITOR.instances[instanceName].updateElement();
Does ...
Scrubby asked 6/7, 2018 at 4:33
7
import CKEditor from '@ckeditor/ckeditor5-react';
import ClassicEditor from '@ckeditor/ckeditor5-build-classic';
import Base64UploadAdapter from '@ckeditor/ckeditor5-upload/src/adapters/base64uploa...
5
Solved
Is it possible to insert text into the editor at current selection?
I have tried
import Text from '@ckeditor/ckeditor5-engine/src/model/text';
function insertText() {
let text = new Text('test'...
Anecdotist asked 19/4, 2018 at 17:44
2
Solved
I am wondering how to insert an image by it's URL only (a user gets it from some other website). I need to implement a simple img src="" in CKEditor 5. The problem is that by default, the editor re...
Beichner asked 1/8, 2018 at 21:45
2
Solved
I've managed to customize the header and highlight dropdowns for CKEditor 5 – classic editor build by creating a new custom build.
But I don't know how to add additional buttons to the toolbar. For...
Sacral asked 21/9, 2018 at 13:44
3
Solved
For the past several months, I've been building my app with Create React App.
However, Ionic now supports Vite and I am attempting to migrate my app from CRA to Vite.
Originally, I made a CKEditor ...
Pecten asked 31/7, 2022 at 2:49
4
Solved
I have create my own plugin for link. Now I want to add some other attributes to a tag generated by the plugin, like target, rel.
But I am not able to get it done. Here is the my plugins code for ...
Ofay asked 12/7, 2018 at 10:58
4
I am working on a blog site and struggling to find the way to display the raw content of ckeditor in react js tried setInnerHtml <- (bad formating) ? How to display the content in the exact same...
31
In CKEditor 4 to change the editor height there was a configuration option: config.height.
How do I change the height of CKEditor 5? (the Classic Editor)
6
This question may have already answers but none of them is Angular specific.
Here are some of them
CKEditor 5 and Image Button
How to enable image upload support in CKEditor 5?
Insert image to C...
3
As per React & CKEditor5 Image upload options:
https://ckeditor.com/docs/ckeditor5/latest/features/image-upload/image-upload.html
The following code does render the CKEditor component correct...
1
I have the style plugin installed on ckeditor5 and for elements with one level, like a paragraph, it works great but with something like a list, it doesn't (or doesn't for me!) The reason seems to ...
2
Sorry if this has been discussed before, but I have searched exhaustively and only found solutions to the older version, not 5. I want to have two buttons for my forms, SEND and RESET. When someone...
Fixed asked 15/4, 2018 at 21:36
9
Solved
I wanted to configure the toolbar in CKEDITOR 5. I took a look at the documentation.
https://ckeditor5.github.io/docs/nightly/ckeditor5/latest/builds/guides/integration/configuration.html
Yet, th...
Tusker asked 20/11, 2017 at 11:18
7
Solved
I want to use ckeditor in angular 9, I followed instructions in https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/frameworks/angular.html
but it shows an error where I import '@c...
4
Solved
I am migrating from CKEditor 4.7 to 5.
In CKE4, I would do something like this:
CKEDITOR.replace('text_area');
and then in another JS function I could get the data by
CKEDITOR.instances.text_area....
3
Solved
I know that for CKEditor 4, you can get the textarea data like this:
var content = CKEDITOR.instances['comment'].getData();
How is this done for CKEditor 5?
5
Solved
I've created a project using JHipster and trying to create a WYSIWYG rich text editor using CKEditor 5. I've done the below steps by using the following link to create an editor.
npm install --sav...
7
Solved
I want to disable sticky toolbar which appears on top of page when page is scrolled. How it can be done ?
Icefall asked 26/9, 2018 at 7:53
2
I am trying to integrate CKEDITOR 5 in my Angular 8 project. I have created custom super build with additional plugins and with both ClassicEditor and InlineEditor(using this guide: https://ckedito...
2
Solved
I'm trying to capture the input inside a CKEditor5 in an Angular app using typescript. I am able to get the CKEditor to show and am able to log the editor's presence. However, I can't seem to be ab...
Pianism asked 8/4, 2018 at 4:39
2
I want to use CKEditor5 in my Angular7 application and faced the following problem:
when I add a video from YouTube, using 'mediaEmbed' option in editor config, editor returns html like this:
&l...
Newmark asked 11/4, 2019 at 12:0
1
I'm setting up ckeditor5, but it removes a lot of the html attributes. I want to know if there's a way to allow all attributes without specifying one by one, or maybe specify it with a wildcard.
(...
Jerejereld asked 20/6, 2019 at 20:35
1
Solved
ReferenceError: self is not defined while importing CKEditor. I am using next.js.
import { CKEditor } from '@ckeditor/ckeditor5-react';
Already installed using
npm install --save @ckeditor/c...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.