I'm using the TelerikEditor component:
<TelerikEditor @ref="@SummaryEditor"
Class="rich-editor"
EditMode="@EditorEditMode.Iframe"
Value="@TextDisplayModel.Text"
ValueChanged="@RichEditorValueChanges"
ValueExpression="@((()=> TextDisplayModel.Text))">
</TelerikEditor>
I have the same problem. With the following code, after calling SetText (by clicking on a button) the string is processed and saved to the variable but then it is not displayed in the editor.
I could not reproduce this in blazorrepl though but on our live server it happens very often.
I found a workaround which seems to work. I had to add the ExecuteAsync line you can see below in my code.