Encountering a specific issue? Before anything else, take a look at our FAQ to see if your problem is a common one.
If you can't find what you're looking for, feel free to refer to our issue tracker.
No. If you need to utilize the paid version of Jodit across multiple sites/domains/subdomains, you'll require the OEM version.
Yes, you can. However, unlike the OEM license, you'll need to generate a distinct license for each site, including those on subdomains.
We have a dedicated package for this: React Jodit PRO
Jodit for React reinitializes whenever it receives new options. If you're creating a new options object for each render, like this:
Copyexport const editor = () => { return ( <JoditEditor config={{ license: '%LICENSE_KEY%' }} /> ); };
This will cause Jodit to reinitialize on every render. To avoid this, simply move the settings into a separate object.
Copyimport JoditEditor from 'jodit-pro-react'; const defaultConfig = { license: '%LICENSE_KEY%' }; export const editor = () => { return <JoditEditor config={defaultConfig} />; };
Yes. We provide a special API for this purpose.
Absolutely. The free version is distributed under the MIT license, and if this suits your needs, you're welcome to use it in your project.