RichTextEditorFor well formatted xhtml

Hello,
I collect some user input through RT EditorFor, save it to db, and eventually generate a document.
When writing to document, I've encountered the "DocIO support only welformatted xhtml" error. 
I checked the input, and there were indeed some tags, that do not comply with xhtml, e.g.:  

<div><p><br></p><p>This is not OK.</p><p><br></p></div>

Based on the documentation here:
https://ej2.syncfusion.com/aspnetmvc/documentation/rich-text-editor/xhtml-validation/#xhtml-validation
I assumed EnableXhtml option would be taking care of this.

 @Html.EJS().RichTextEditorFor(model => model.SolutionProposal).EnableXhtml(true).Render();

However, the problem is unchanged. Is there something else I need to set up?
Thank you for your help,
Petr


Syncfusion v. 18.15

2 Replies 1 reply marked as answer

IS Indrajith Srinivasan Syncfusion Team May 13, 2020 01:27 PM UTC

Hi Petr,

Greetings from Syncfusion support,
 
 
We have validated on the reported query and have confirmed Xhtml validation doesn't consider <br> tags in RichTextEditor” as a bug from our end and logged the report for the same, and the fix will be included with our patch release scheduled by the end of May.

You can now track the current status of the report, review the proposed resolution timeline, and contact us for any further inquiries through this link: https://www.syncfusion.com/feedback/14338/

Regards,
 
Indrajith 



IS Indrajith Srinivasan Syncfusion Team July 10, 2020 11:07 AM UTC

Hi Petr,

Sorry for the delayed response,

We have further analyzed on the reported issue and it is not a bug with Rich Text Editor. This seems to be a default browser behaviour.

Case 1:
 
 
When the user Rich Text Editor value is <p><br></p>

 
Chrome and Firefox browser will accept as it is <p><br></p>

 
Edge and IE11 browser will convert <br> to </br> so the value will be <p><br /></p> 


 
Case 2:

 
When the user Rich Text Editor value is <p><br /></p>

 
Chrome and Firefox browser will convert it as <p><br></p>

 
Edge and IE11 browser will accept as it is and the value will be <p><br /></p> 

So from this whatever the value is the edge and IE11 will show <br> as <br/> and chrome and Firefox will show as <br> which is a browser default behavior.
 
 
Please let us know if you have any queries. 
 
Regards 
Indrajith 


Marked as answer
Loader.
Up arrow icon