BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
Hi
How do I enable spell checking on the Document Editor in Blazor Server? It seems like a very basic requirement but I can't see anything in the documentation about this?
I've set EnableSpellCheck to "true" but nothing happened.
What are the exact steps to get spell checking working? Assume I'm an idiot, please.
<SfDocumentEditorContainer @ref="docEditor" EnableSpellCheck="true" Height="85vh" EnableToolbar=true>
<DocumentEditorContainerEvents Created="OnWordEditorCreated"></DocumentEditorContainerEvents>
</SfDocumentEditorContainer>
Hi Aaron,
To enable spellcheck, you need to add a dictionary on the server side and set the language ID on the server side as well. We have prepared a sample to meet your requirements, so please refer to the attached sample for your reference.
Regards,
Selvaprakash K
Hi
Thanks for the sample. The example is in Blazor Web Assembly. Will this work with Blazor Server?
If I set the ServiceUrl do I need to implement the Import routine and other functions from that service? Is there no way to do this in a normal Blazor Server context?
Thanks.
Hi Aaron,
Thanks for the sample. The example is in Blazor Web Assembly. Will this work with Blazor Server? |
Yes, it works for the Blazor server as well, and additionally added the code for your reference. <SfDocumentEditorContainer @ref="container" EnableToolbar=true Height="590px" EnableSpellCheck="true"ServiceUrl="http://localhost:62870/api/documenteditor/"> <DocumentEditorContainerEvents Created="OnLoad"></DocumentEditorContainerEvents> </SfDocumentEditorContainer>
@code {
SfDocumentEditorContainer container; public void OnLoad(object args) { var spellcheck = container.DocumentEditor.SpellChecker; // Document Editor provides multi-language spell check support. You can add as many languages (dictionaries) in the server-side and to use that language for spell checking in Document Editor, it must be matched with languageID you pass in the Document Editor. spellcheck.SetLanguageIDAsync(1033); spellcheck.SetRemoveUnderlineAsync(false); spellcheck.SetAllowSpellCheckAndSuggestionAsync(true); }
} |
If I set the ServiceUrl do I need to implement the Import routine and other functions from that service? |
No, the mentioned serviceUrl is used for spellcheck interaction only.
|
Is there no way to do this in a normal Blazor Server context? |
Yes, need a separate project (attached in the previous update) if you want to use spellchecker in blazor.
|
Regards,
Selvaprakash K