Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Rich Text Editor breaking HTML

Rodrigo MesquitaApr 15 2024

Hi,

In my app, we have some email HTML templates where users can select and add it to the rich text editor, make changes, and send them as email messages.

The issue is that the rich text editor is wrapping pieces of the HTML into the <figure> tag. This adds left margins and breaks HTML-centered items.

How can I disable that?

I've tried to add the code below to the Initialization JavaScript Function but with no luck:

function(options){
options.allowedContent = true;
options.automaticStyleWrap = false;
options.autoParagraph = false;
return options;

Regards,

Rodrigo

Comments
Post Details
Added on Apr 15 2024
1 comment
281 views