The tools of inline editor is not showing for modal and textarea

61 Views Asked by At

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?

1

There are 1 best solutions below

0
Ruman Ali On

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