Hi. Do you have for RichTextEditor events such as @onselect? I would like to activate a button after selecting text in the editor. And also, if possible, save the selected text to a variable when Rich Text Editor is focused out.
Thanks.
<SfRichTextEditor>
<RichTextEditorEvents Blur="@BlurHandler"><RichTextEditorEvents>
</SfRichTextEditor>
@code{
public async Task BlurHandler(BlurEventArgs args)
{
var selectedText = await RteObj.GetSelectionAsync()
}
}