Differences in TinyMCE-HTML-Area-Component

Hi

We use the HtmlArea-Component (TinyMCE) and bind it to a dataprovider. When we store a record in Servoy 2021.03 then the content in the specific field looks like this:

<html><body><p>My Test</p></body></html>

In TiNG (Servoy 2024.03 LTS) when I do the same the content in the field looks like this:

<p>My Test</p>

So obiously the “”-nodes are not stored anymore, just “the content”.

Could this be configured somehow?

Thanks for any suggestions.

Best
Roland

i don’t think so this is just how TinyMCE works:

https://www.tiny.cloud/docs/tinymce/lat … mium-demo/

also there if you do new document and then just type something (and then ask for the source) you see the same thing, just

its just that you are designing a document with html styling you don’t design a website.

We use this html-area for example to create e-mail-templates (html-emails) and there we need this full-html-thing around (…) and as I wrote: until 2021.03 it worked like that and now it changed. Probably it’s worth mention this in the documentation as a behaviour-change. At least we must be aware of this change.

So, for us we will build a workaround for that, that after data-change we wrap it by our code with the missing html- and -body-tags.