CKEditor with redux-form
See original GitHub issueIssue Description
I’m trying to use CKEditor with redux-form, but I’m not exactly sure how to use it within a
<Field
label="Content"
name="content"
component={CKEditor}
/>
But when I do a simple test with:
onSubmit(values) {
console.log(values);
}
I’m not getting anything back. I assume I’ll need to use the content prop to get it to include the editor content into the values argument, but I’m not sure how I might do that.
Thanks in advance for your help.
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
React component - CKEditor 5 Documentation
Learn how to install, integrate and configure CKEditor 5 Builds and how to work with CKEditor 5 Framework, customize it, create your own...
Read more >Ask Question - Stack Overflow
in React, "history.push('/')" is not working in some component ; React, { Component } ; 'react'; import ; from 'redux-form' ; CKEditor }...
Read more >Build a Rich Text Editor in React - Morioh
In this video we go over how you can build a rich text editor using react. To implement this we use a package...
Read more >How to Use Syncfusion's React Rich Text Editor with React ...
This blog provides the steps to merge Syncfusion's React Rich Text Editor with React Redux Form to validate inputs in form fields.
Read more >Adding Plugins to a Custom Build of CKEditor5 with ReactJS ...
clone your forked repo to your existing project and use the ckeditor from YOUR build. This process is not very straight forward and...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I fixed it with ckeditor5-react by
I got it working with Redux Forms like this: