Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
We upgraded our website from Umbraco 12 to 13 and now we having this issue in the backoffice where the content of RTE is not showing. It only shows [object Object]
do you see any javascript errors in the browser console?
TinyMCE changed in v13 to handle the new Blocks in RTE instead of Macros, so the json storage object is now something like;
{"markup":"<p>The HTML content</p>","blocks":{"contentData":[],"settingsData":[]}}
I had to update a couple of my custom property editors to now reference ".markup", so you might have to do similar depending on your setup.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Umbraco 13 RTE Issue in the backoffice
We upgraded our website from Umbraco 12 to 13 and now we having this issue in the backoffice where the content of RTE is not showing. It only shows [object Object]
do you see any javascript errors in the browser console?
TinyMCE changed in v13 to handle the new Blocks in RTE instead of Macros, so the json storage object is now something like;
I had to update a couple of my custom property editors to now reference ".markup", so you might have to do similar depending on your setup.
is working on a reply...