Hi Lucas,
I updated to your latest version today, and also downloaded and opened up the demo.
It appears the text editor no longer shows on either
Console shows tons of errors as well
Hi @Lucas Soares ,
I'm using your demo with all of your options already in place. I've removed all options that aren't mandatory and tried again, but still receiving the same errors along with the TextEditor not loading. Your help is greatly appreciated.
Thanks,
Edit: Found the issue, not sure if it was being cached or not but the theme/silver/theme.min.js was the incorrect version. After making sure it was using the right version, it loaded up fine. Thanks again!
Hi Chris, I download and install the componente in some clients, and works well.
Please note that the previous version was 5 and this is 6. Some settings of the toolbar and plugins, have changed their name or the way they are called.
You may be trying to use some setting in the toolbar that no longer exists in version 6, or that is used differently.
Please see if the setting you are trying to use still exists or the call has been modified in the link official: https://www.tiny.cloud/docs/tinymce/6/available-toolbar-buttons/
or if you prefer, you can share more details here about which toolbar item you're trying to use.
By the console error, you are trying to pass some wrong value in the toolbar entry.
Hug,
Thanks for your reply @Lucas Soares! It's just strange that I'm using the demo app and it still doesn't show.
Hi Palk, no problem, can you share with us some information, printscreens?
Attach print of the following items:
Properties tab
Widget Tree
Aplication type: eg. Mobile, Reactive or Tradicional
Or share .oml
It had nothing to do with what I was passing, I think it was the theme.min.js cached after migrating from v5 to v6. But I can certainly share the photos:
I do however have a suggestion for another issue I was running into, where if the block had not rendered yet (i.e. hidden based on a requirement or within a block that was not accessed yet) it was throwing an error "cannot set innerHtml on property of null."
This seems to check and take care of that for me within the SetInnerHTML js block of the OnRender client action:
if (document.getElementById($parameters.WidgetId) !== null) { document.getElementById($parameters.WidgetId).innerHTML = $parameters.ContentHTML;}