react-ckeditor
react-ckeditor copied to clipboard
CK editor instance initializing many time.
trafficstars
-
When I am populating value from other sources on CK editor than it is initializing on every value update.
-
But when I am typing then it is working properly.
Please share the code you are using to import CKEditor in your project
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
}}
/>