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!
Blur event is not triggered when the toolbar is empty. However, if the toolbar contains items, the event fires correctly when the editor loses focus.@using Syncfusion.Blazor.RichTextEditor
<SfRichTextEditor >
<RichTextEditorToolbarSettings Items="[]"/>
<RichTextEditorEvents Blur="Callback"></RichTextEditorEvents>
</SfRichTextEditor>
@code {
private void Callback(BlurEventArgs arg)
{
Console.WriteLine("Blur");
}
}
Steps to Reproduce:
Blur event does not trigger.Expected Behavior:
The Blur event should trigger when the editor loses focus, regardless of whether the toolbar has items.
Actual Behavior:
The Blur event is only triggered when the toolbar contains items. It does not fire when the toolbar is empty.