Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Hi There
I use RichTextEditor in two modes. These are readonly mode and edit mode. After this update, both will be ready for input.
And the input content is the html tag itself.

The top one is readonly and the bottom one is edit mode.
Both are input.
@if (보기모드 == true)
{
<SfRichTextEditor Readonly="true">
<ChildContent>
@내용
<RichTextEditorInlineMode Enable="true" OnSelection="true" />
</ChildContent>
</SfRichTextEditor>
}
else
{
<SfRichTextEditor Height="300px" ValueChanged="내용Changed">
<ChildContent>
@내용
</ChildContent>
</SfRichTextEditor>
}