diff --git a/Document-Processing/Word/Word-Processor/angular/spell-check.md b/Document-Processing/Word/Word-Processor/angular/spell-check.md index 5d436fbf2..8cd8f7e2b 100644 --- a/Document-Processing/Word/Word-Processor/angular/spell-check.md +++ b/Document-Processing/Word/Word-Processor/angular/spell-check.md @@ -41,11 +41,11 @@ export class AppComponent { ## Enable SpellCheck -To enable spell check in DocumentEditor, set [`enableSpellCheck`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#enablespellcheck) property as `true` and then configure SpellCheckSettings. +To enable spell check in DocumentEditor, set [`enableSpellCheck`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/index-default#enablespellcheck) property as `true` and then configure SpellCheckSettings. ## Disable SpellCheck -To disable spell check in DocumentEditor, set [`enableSpellCheck`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#enablespellcheck) property as `false` or remove [`enableSpellCheck`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#enablespellcheck) property initialization code. The default value of this property is false. +To disable spell check in DocumentEditor, set [`enableSpellCheck`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/index-default#enablespellcheck) property as `false` or remove [`enableSpellCheck`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/index-default#enablespellcheck) property initialization code. The default value of this property is false. ## Spell check settings @@ -73,8 +73,6 @@ Document Editor provides multi-language spell check support. You can add as many this.container.documentEditor.spellChecker.languageID = 1033; //LCID of "en-us"; ``` -* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side. - ### EnableOptimizedSpellCheck Document Editor provides option to spellcheck page by page when loading the documents. The default value of this property is false, so when opening the document spellcheck web API will be called for each word in the document. To optimize the frequency of spellcheck web API calls, you can enable this property. @@ -162,4 +160,6 @@ Ignore All: ignore all occurrence of a word from error in the entire document. Using this option, you can open spell check dialog. Please see below screenshot for your reference. -![Spell check dialog](images/spell-check-dialog.png) \ No newline at end of file +![Spell check dialog](images/spell-check-dialog.png) + +* Refer to the [Spell checker](https://help.syncfusion.com/document-processing/word/word-processor/angular/web-services/core#spell-check) link for configuring spell checker in server-side. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/asp-net-core/spell-check.md b/Document-Processing/Word/Word-Processor/asp-net-core/spell-check.md index d7ab2ddda..9b7278ee1 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-core/spell-check.md +++ b/Document-Processing/Word/Word-Processor/asp-net-core/spell-check.md @@ -1,6 +1,6 @@ --- layout: post -title: Spell Check in Document Editor Component +title: Spell Check in ASP.NET Core Document Editor Component | Syncfusion description: Learn here all about spell check in Syncfusion Document Editor component of Syncfusion Essential JS 2 and more. platform: document-processing control: Spell Check @@ -17,9 +17,7 @@ Document editor supports performing spell checking for any input text. You can p {% highlight cshtml tabtitle="CSHTML" %} {% include code-snippet/document-editor/asp-net-core/spell-checker/tagHelper %} {% endhighlight %} -{% highlight c# tabtitle="Spell-checker.cs" %} -{% endhighlight %}{% endtabs %} - +{% endtabs %} ## Features @@ -147,4 +145,4 @@ Using this option, you can open spell check dialog. ![Spell check dialog](images/spell-check-dialog.png) -* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side. \ No newline at end of file +* Refer to the [Spell checker](https://github.com/SyncfusionExamples/EJ2-Document-Editor-Web-Services/tree/master/ASP.NET%20Core#steps-to-configure-spell-checker) link for configuring spell checker in server-side. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/spell-check.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/spell-check.md index 14926c5da..4798d0949 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/spell-check.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/spell-check.md @@ -1,6 +1,6 @@ --- layout: post -title: Spell Check in ASP.NET MVC Document Editor Component +title: Spell Check in ASP.NET MVC Document Editor Component | Syncfusion description: Learn here all about spell check in Syncfusion ASP.NET MVC Document Editor component of Syncfusion Essential JS 2 and more. platform: document-processing control: Spell Check @@ -17,9 +17,7 @@ Document editor supports performing spell checking for any input text. You can p {% highlight razor tabtitle="CSHTML" %} {% include code-snippet/document-editor/asp-net-mvc/spell-checker/razor %} {% endhighlight %} -{% highlight c# tabtitle="Spell-checker.cs" %} -{% endhighlight %}{% endtabs %} - +{% endtabs %} ## Features @@ -147,4 +145,4 @@ Using this option, you can open spell check dialog. ![Spell check dialog](images/spell-check-dialog.png) -* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side. \ No newline at end of file +* Refer to the [Spell checker](https://github.com/SyncfusionExamples/EJ2-Document-Editor-Web-Services/tree/master/ASP.NET%20MVC#spell-check) link for configuring spell checker in server-side. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/spell-check.md b/Document-Processing/Word/Word-Processor/javascript-es5/spell-check.md index 759cba927..4ee986a79 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es5/spell-check.md +++ b/Document-Processing/Word/Word-Processor/javascript-es5/spell-check.md @@ -30,7 +30,7 @@ spellChecker.allowSpellCheckAndSuggestion = true; ``` >Note: Document Editor requires server-side dependencies for spell check configuration. -Refer to the [Document Editor Web API service projects from GitHub](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.To know about server-side dependencies, please refer this [page](./web-services-overview). +Refer to the [Document Editor Web API service projects](https://help.syncfusion.com/document-processing/word/word-processor/javascript-es5/web-services/core) link for configuring spell checker in server-side.To know about server-side dependencies, please refer this [page](./web-services-overview). ## Features @@ -159,3 +159,5 @@ Ignore All: ignore all occurrence of a word from error in the entire document. Using this option, you can open spell check dialog. Please see below screenshot for your reference. ![Spell check dialog in JavaScript document editor](images/spell-check-dialog.png) + +* Refer to the [Spell checker](https://help.syncfusion.com/document-processing/word/word-processor/javascript-es5/web-services/core#spell-check) link for configuring spell checker in server-side. diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/spell-check.md b/Document-Processing/Word/Word-Processor/javascript-es6/spell-check.md index dad69c3ec..9f09a75c9 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es6/spell-check.md +++ b/Document-Processing/Word/Word-Processor/javascript-es6/spell-check.md @@ -30,7 +30,7 @@ spellChecker.allowSpellCheckAndSuggestion = true; ``` >Note: Document Editor requires server-side dependencies for spell check configuration. -Refer to the [Document Editor Web API service projects from GitHub](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.To know about server-side dependencies, please refer this [page](./web-services-overview). +Refer to the [Document Editor Web API service projects](https://help.syncfusion.com/document-processing/word/word-processor/javascript-es6/web-services/core#spell-check) link for configuring spell checker in server-side.To know about server-side dependencies, please refer this [page](./web-services-overview). ## Features @@ -159,3 +159,5 @@ Ignore All: ignore all occurrence of a word from error in the entire document. Using this option, you can open spell check dialog. Please see below screenshot for your reference. ![Spell check dialog in JavaScript document editor](images/spell-check-dialog.png) + +* Refer to the [Spell checker](https://help.syncfusion.com/document-processing/word/word-processor/javascript-es6/web-services/core#spell-check) link for configuring spell checker in server-side. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/react/spell-check.md b/Document-Processing/Word/Word-Processor/react/spell-check.md index 44845c995..dd30e68f7 100644 --- a/Document-Processing/Word/Word-Processor/react/spell-check.md +++ b/Document-Processing/Word/Word-Processor/react/spell-check.md @@ -97,11 +97,9 @@ documentEditor.spellChecker.allowSpellCheckAndSuggestion = false; 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`](https://ej2.syncfusion.com/react/documentation/api/document-editor/spellChecker#languageid) you pass in the Document Editor. - ```ts - documentEditor.spellChecker.languageID = 1033; //LCID of "en-us"; - ``` - -* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side. +```ts +documentEditor.spellChecker.languageID = 1033; //LCID of "en-us"; +``` ### EnableOptimizedSpellCheck @@ -190,4 +188,6 @@ Ignore All: ignore all occurrence of a word from error in the entire document. Using this option, you can open spell check dialog. Please see below screenshot for your reference. -![Spell check dialog](images/spell-check-dialog.png) \ No newline at end of file +![Spell check dialog](images/spell-check-dialog.png) + +* Refer to the [Spell checker](https://help.syncfusion.com/document-processing/word/word-processor/react/web-services/core#spell-check) link for configuring spell checker in server-side. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/vue/spell-check.md b/Document-Processing/Word/Word-Processor/vue/spell-check.md index 2366b4b46..7597666c5 100644 --- a/Document-Processing/Word/Word-Processor/vue/spell-check.md +++ b/Document-Processing/Word/Word-Processor/vue/spell-check.md @@ -200,4 +200,4 @@ Using this option, you can open spell check dialog. Please see below screenshot ![Spell check dialog](images/spell-check-dialog.png) -* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side. \ No newline at end of file +* Refer to the [Spell checker](https://help.syncfusion.com/document-processing/word/word-processor/vue/web-services/core#spell-check) link for configuring spell checker in server-side. \ No newline at end of file