Question mark in bullet list(Unordered list)

If we select unordered list first and add list items--> it is adding ?? to last list item. 

 We fixed this problem by replace Rich text editor value by  .replace(/[\u200B\uFEFF]/g"")


But we have so many rich text controls in a app. Is there any way to fix all RTE controls value in one place. Please let us know


3 Replies 1 reply marked as answer

VJ Vinitha Jeyakumar Syncfusion Team March 22, 2024 11:18 AM UTC

Hi Mahesh Machina,


Your requirement to replace all the Editor's value in one place can be achieved by using a button on every cshtml page which has RichTextEditor and calling a common function from Layout.cshtml for that button click action like below,

Code snippet:
Index.cshtml
 <button onclick="handleButtonClick('defaultRTE')">Click me</button>
<ejs-richtexteditor id="defaultRTE">
    
</ejs-richtexteditor>
Layout.cshtml
 function handleButtonClick(Id) {            
    if (Id == "defaultRTE") {
        var Editor1 = document.getElementById("defaultRTE_rte-edit-view").innerHTML;
        Editor1.replace(/[\u200B\uFEFF]/g, "");
    }
   
    else {
        var Editor2 = document.getElementById("privacyRTE_rte-edit-view").innerHTML;
        Editor2.replace(/[\u200B\uFEFF]/g, "");
    } 
   
}

Sample attached below,

Regards,
Vinitha

Attachment: Core_App_Syncfusion_30bf3d2c.zip


MM Mahesh Machina replied to Vinitha Jeyakumar March 25, 2024 07:55 AM UTC

This is not an ideal solution I believe. We can't add additional button in all places what if user enters ?? in unordered list.  This ?? entered by user can't be replaced.



VJ Vinitha Jeyakumar Syncfusion Team June 18, 2024 07:24 AM UTC

Hi Mahesh Machina,

If you don't want to add button on each page, you can get the instances of the Editor's on any function as per your requirement to modify the Editor content by following the above solution to replace.

Regards,
Vinitha

Marked as answer
Loader.
Up arrow icon