0

I wrote this code to integrate the editor:

<script src="https://cdn.ckeditor.com/ckeditor5/18.0.0/inline/ckeditor.js"></script>

<div class="col-sm-12" id="modalD">

</div>

<script>
     InlineEditor
            .create(document.querySelector('#modalD'))
  
            .catch((error) => {
                console.error(error);
            } );
</script>

Does anyone have a suggestion as to how to integrate the ckeditor for modal?

Xbox One
  • 307
  • 2
  • 13
Ruman Ali
  • 11
  • 2

1 Answers1

0

Baloon and Inline CKEditor doesn't work for textarea.for more clearance you can go through the documentation of CKEditor.

Ruman Ali
  • 11
  • 2