Replies: 1 comment
-
Assuming you has created multiple input value change handle. You can create a component that will handle input processing with TinyMce, then load the component you just created in a page. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
So I'm using "@tinymce/tinymce-react": "^4.3.0",
And for the life of me I cannot figure out how to use multiple editors tied to different selectors. In the tinyMce docs it says I can use a selector ID for targeting specific editors but for the react package I can't figure out how to change this:
editorRef.current.getContent()
to
tinymce.get("selectorHere").getContent();
My problem is that I have 12 editors on the page but when saving the content it only refers to the last one or "current", any help would be appreciated thanks
Beta Was this translation helpful? Give feedback.
All reactions