Hi Syncfusion,
It seems as though some recent update has broken the ValueChange event in the RTE.
It does not trigger when you change text in the RTE.
I tried with the sample below on an older version (18.4.0.46) and it worked fine, and afterwards I tried it on my current project (20.2.0.49) and it did not work.
Sample:
@page "/"
@using Syncfusion.Blazor.RichTextEditor
<SfRichTextEditor SaveInterval="1" @bind-Value="@rteValue">
<RichTextEditorEvents ValueChange="@OnRTEValueChange"></RichTextEditorEvents>
</SfRichTextEditor>
@code {
public string rteValue { get; set; } = "<p>Enter text...</p>";
public void OnRTEValueChange()
{
var currentValue = this.rteValue;
}
}
Can you confirm this?
Best regards,
Rúni