-
Hi I would like to now how to get the Quill instance behind RichTextEdit, so that I can use .blur() when using the "tab" to comply with accessibility standards? Devexpress has a work around for their Quill editor - but I can't seem to figure out how to get the Quill instance from your editor.
Thx in advance 🙂 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 13 replies
-
You can use public getter for ElementRef or ElementId. <RichTextEdit @ref="@richTextEditRef">
@code{
RichTextEdit richTextEditRef;
async Task DoSomething()
{
await JSInterop.DoSomething(richTextEditRef.ElementId);
}
} |
Beta Was this translation helpful? Give feedback.
-
@swaipa I'm happy to see that more people start using the |
Beta Was this translation helpful? Give feedback.
You can use public getter for ElementRef or ElementId.