codeslayer1 / react-ckeditor

CKEditor component for React with plugin and custom event listeners support
MIT License
130 stars 34 forks source link

CK editor instance initializing many time. #75

Open Gajesh-LH opened 4 years ago

Gajesh-LH commented 4 years ago

Here is Demo Link

codeslayer1 commented 4 years ago

Please share the code you are using to import CKEditor in your project

Gajesh-LH commented 4 years ago
import CKEditor from 'react-ckeditor-component';

<CKEditor
       scriptUrl="/static/JS/ckeditor/ckeditor.js"
       content={this.props.value}
       config={{height: 50, autoGrow_minHeight: 50, bottom: 0}}
        events={{
              blur: this.onBlur,
               afterPaste: this.afterPaste,
              change: this.onChange
        }}
 />