Hi Eliseo,
Greetings from Syncfusion support.
We have validated your query “When update action is clicked in our application the zero width space and zero width no-break space added when using the list with formats”.
This issue can be resolved by replacing Unicode characters in the Rich Text Editor value with empty content. We have prepared a sample for your reference,
Code Snippet:
|
public removeUnicode(): void {
this.rteObj.value = this.rteObj.value.replace(/[\u200B\uFEFF]/g, "");
} |
Please check the above code snippet and the sample and let us know if it resolves your issue.
Regards,
Revanth