Skip to content
Advertisement

Tag: ckeditor

CKEditor 5, jQuery – find and replace text

How could I find and replace text in CKEditor 5 using JavaScript and jQuery? I want to find special character ‘@’ in the text and replace all characters after ‘@’ and ‘@’ character too on my own text. I am using change:data… Answer you need editor.getData() and editor.setData(), then use Regex @w+  to match @, alphanumeric and space, without matching

Duplicate CKEditor widget appears as disabled

I have a list of concept forms in which concepts can be added by clicking on a button. The problem is that when I click and duplicate the concept form there is a form field that works with ckeditor, and the new duplicate appears as disabled and cannot be written to. I take the form, copy it and try to

How to find declaration for my typescript/react module?

I am very (very) new in frontend technologies, specially react and typescript. My issue come when trying to do a simple thing that is to use a react component https://github.com/ckeditor/ckeditor5 So I went to the examples and found this: https://github.com/ckeditor/ckeditor5-react-example/blob/master/package.json I am trying to include the ckeditor with the ClassicEditor module So I added this on my package.json and checking

Advertisement