Skip to content

Commit cb88187

Browse files
Merge pull request #1848 from syncfusion-content/993089-spellcheckD
993089: added valid server link for spellcheck in document editor
2 parents 9a17d5e + 85f8de2 commit cb88187

File tree

7 files changed

+24
-23
lines changed

7 files changed

+24
-23
lines changed

Document-Processing/Word/Word-Processor/angular/spell-check.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ export class AppComponent {
4141

4242
## Enable SpellCheck
4343

44-
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.
44+
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.
4545

4646
## Disable SpellCheck
4747

48-
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.
48+
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.
4949

5050
## Spell check settings
5151

@@ -73,8 +73,6 @@ Document Editor provides multi-language spell check support. You can add as many
7373
this.container.documentEditor.spellChecker.languageID = 1033; //LCID of "en-us";
7474
```
7575

76-
* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.
77-
7876
### EnableOptimizedSpellCheck
7977

8078
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.
162160

163161
Using this option, you can open spell check dialog. Please see below screenshot for your reference.
164162

165-
![Spell check dialog](images/spell-check-dialog.png)
163+
![Spell check dialog](images/spell-check-dialog.png)
164+
165+
* 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.

Document-Processing/Word/Word-Processor/asp-net-core/spell-check.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Spell Check in Document Editor Component
3+
title: Spell Check in ASP.NET Core Document Editor Component | Syncfusion
44
description: Learn here all about spell check in Syncfusion Document Editor component of Syncfusion Essential JS 2 and more.
55
platform: document-processing
66
control: Spell Check
@@ -17,9 +17,7 @@ Document editor supports performing spell checking for any input text. You can p
1717
{% highlight cshtml tabtitle="CSHTML" %}
1818
{% include code-snippet/document-editor/asp-net-core/spell-checker/tagHelper %}
1919
{% endhighlight %}
20-
{% highlight c# tabtitle="Spell-checker.cs" %}
21-
{% endhighlight %}{% endtabs %}
22-
20+
{% endtabs %}
2321

2422

2523
## Features
@@ -147,4 +145,4 @@ Using this option, you can open spell check dialog.
147145

148146
![Spell check dialog](images/spell-check-dialog.png)
149147

150-
* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.
148+
* 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.

Document-Processing/Word/Word-Processor/asp-net-mvc/spell-check.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Spell Check in ASP.NET MVC Document Editor Component
3+
title: Spell Check in ASP.NET MVC Document Editor Component | Syncfusion
44
description: Learn here all about spell check in Syncfusion ASP.NET MVC Document Editor component of Syncfusion Essential JS 2 and more.
55
platform: document-processing
66
control: Spell Check
@@ -17,8 +17,7 @@ Document editor supports performing spell checking for any input text. You can p
1717
{% highlight razor tabtitle="CSHTML" %}
1818
{% include code-snippet/document-editor/asp-net-mvc/spell-checker/razor %}
1919
{% endhighlight %}
20-
{% highlight c# tabtitle="Spell-checker.cs" %}
21-
{% endhighlight %}{% endtabs %}
20+
{% endtabs %}
2221

2322

2423

@@ -147,4 +146,4 @@ Using this option, you can open spell check dialog.
147146

148147
![Spell check dialog](images/spell-check-dialog.png)
149148

150-
* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.
149+
* 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.

Document-Processing/Word/Word-Processor/javascript-es5/spell-check.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spellChecker.allowSpellCheckAndSuggestion = true;
3030
```
3131

3232
>Note: Document Editor requires server-side dependencies for spell check configuration.
33-
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).
33+
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).
3434

3535
## Features
3636

@@ -159,3 +159,5 @@ Ignore All: ignore all occurrence of a word from error in the entire document.
159159
Using this option, you can open spell check dialog. Please see below screenshot for your reference.
160160

161161
![Spell check dialog in JavaScript document editor](images/spell-check-dialog.png)
162+
163+
* 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.

Document-Processing/Word/Word-Processor/javascript-es6/spell-check.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spellChecker.allowSpellCheckAndSuggestion = true;
3030
```
3131

3232
>Note: Document Editor requires server-side dependencies for spell check configuration.
33-
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).
33+
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).
3434

3535
## Features
3636

@@ -159,3 +159,5 @@ Ignore All: ignore all occurrence of a word from error in the entire document.
159159
Using this option, you can open spell check dialog. Please see below screenshot for your reference.
160160

161161
![Spell check dialog in JavaScript document editor](images/spell-check-dialog.png)
162+
163+
* 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.

Document-Processing/Word/Word-Processor/react/spell-check.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,9 @@ documentEditor.spellChecker.allowSpellCheckAndSuggestion = false;
9797

9898
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.
9999

100-
```ts
101-
documentEditor.spellChecker.languageID = 1033; //LCID of "en-us";
102-
```
103-
104-
* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.
100+
```ts
101+
documentEditor.spellChecker.languageID = 1033; //LCID of "en-us";
102+
```
105103

106104
### EnableOptimizedSpellCheck
107105

@@ -190,4 +188,6 @@ Ignore All: ignore all occurrence of a word from error in the entire document.
190188

191189
Using this option, you can open spell check dialog. Please see below screenshot for your reference.
192190

193-
![Spell check dialog](images/spell-check-dialog.png)
191+
![Spell check dialog](images/spell-check-dialog.png)
192+
193+
* 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.

Document-Processing/Word/Word-Processor/vue/spell-check.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,4 +200,4 @@ Using this option, you can open spell check dialog. Please see below screenshot
200200

201201
![Spell check dialog](images/spell-check-dialog.png)
202202

203-
* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.
203+
* 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.

0 commit comments

Comments
 (0)