RichTextEditor does not clean it content

0
In RichText Editor, when I write some text, it includes it automatically inside <p> html tags. But when I delete all the text in RichText Editor, it still holds only empty <p></p> tags. So my Richtext content is not empty anymore. How can I overcome this issue ?
asked
2 answers
1

Hi Serdar,

I have experienced similar issues with the Rich Text Editor. This is a bug, and Mendix Support should take care of it.

You can create a support ticket here.

 

Best Regards,

Damir

answered
0

Hi

Do you wan to check that it is empty or not for validation?

If so, try using this trim(replaceAll($RichText, '(<[^>]+>|&nbsp;|\\s)*', '')) = '' in decision.

 

Hope it helps.

answered