SpellCheck Operations
5 Jul 201822 minutes to read
Essential SpellCheck provides two ways to perform the SpellCheck operation(error correction). They are,
- Dialog Mode
- Context Menu Mode
Dialog Mode
Description
SpellCheck provides the dialog mode option to perform the following SpellCheck operations.
- Ignore Once
- Ignore All
- Change
- Change All
- Add to Dictionary
Open Dialog Mode
The following code snippet shows how to open the dialog to spell check the content.
<ej-spellcheck id="SpellCheck" contenteditable="true" style="display:block" [dictionarySettings]="dictionary" [contextMenuSettings.enable]="false">
Facebook is a social networking service headquartered in Menlo Park, California. Its website was launched on February 4, 2004, by Mark Zuckerberg with his Harvard College roommates and fellow students Eduardo, Andrew McCollum, Dustin and Chris Hughes. The fouders had initially limited the websites membrship to Harvard students, but later expanded it to collges in the Boston area, the Ivy League, and Stanford Univrsity. It graually added support for students at various other universities and later to high-school students.
</ej-spellcheck>
export class SpellCheckComponent {
public dictionary: any;
constructor() {
this.dictionary = {
dictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/CheckWords",
customDictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/AddToDictionary"
};
}
ngAfterViewInit(){
let spellObj = $('#SpellCheck').data('ejSpellCheck');
spellObj.showInDialog();
}
}
Handling Dialog Actions
To define the specific actions before the dialog window open, the client-side event dialogBeforeOpen
can be used as depicted in the below code example.
<ej-spellcheck id="SpellCheck" contenteditable="true" style="display:block" [dictionarySettings]="dictionary" [contextMenuSettings.enable]="false" (dialogBeforeOpen)="onDialogBeforeOpen($event)">
Facebook is a social networking service headquartered in Menlo Park, California. Its website was launched on February 4, 2004, by Mark Zuckerberg with his Harvard College roommates and fellow students Eduardo, Andrew McCollum, Dustin and Chris Hughes. The fouders had initially limited the websites membrship to Harvard students, but later expanded it to collges in the Boston area, the Ivy League, and Stanford Univrsity. It graually added support for students at various other universities and later to high-school students.
</ej-spellcheck>
<input id="CheckSpell" type="button" class="ejinputtext" style="height:30px" value="Spell check" (click)="checkErrors($event)" />
export class SpellCheckComponent {
public dictionary: any;
constructor() {
this.dictionary = {
dictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/CheckWords",
customDictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/AddToDictionary"
};
}
checkErrors(){
let spellObj = $('#SpellCheck').data('ejSpellCheck');
spellObj.showInDialog();
}
onDialogBeforeOpen(args) {
if (args.requestType == "dialogBeforeOpen") {
alert("dialog before open event triggered");
}
}
}
The client-side event dialogOpen
can be used to define the specific actions after the dialog window open as shown in the following code example.
<ej-spellcheck id="SpellCheck" contenteditable="true" style="display:block" [dictionarySettings]="dictionary" [contextMenuSettings.enable]="false" (dialogOpen)="onDialogOpen($event)">
Facebook is a social networking service headquartered in Menlo Park, California. Its website was launched on February 4, 2004, by Mark Zuckerberg with his Harvard College roommates and fellow students Eduardo, Andrew McCollum, Dustin and Chris Hughes. The fouders had initially limited the websites membrship to Harvard students, but later expanded it to collges in the Boston area, the Ivy League, and Stanford Univrsity. It graually added support for students at various other universities and later to high-school students.
</ej-spellcheck>
<input id="CheckSpell" type="button" class="ejinputtext" style="height:30px" value="Spell check" (click)="checkErrors($event)" />
export class SpellCheckComponent {
public dictionary: any;
constructor() {
this.dictionary = {
dictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/CheckWords",
customDictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/AddToDictionary"
};
}
checkErrors(){
let spellObj = $('#SpellCheck').data('ejSpellCheck');
spellObj.showInDialog();
}
onDialogOpen(args) {
if (args.requestType == "dialogOpen") {
alert(args.targetText);
}
}
}
The following code example used to define some actions after the dialog closing by using the client-side event dialogClose
.
<ej-spellcheck id="SpellCheck" contenteditable="true" style="display:block" [dictionarySettings]="dictionary" [contextMenuSettings.enable]="false" (dialogClose)="onDialogClose($event)">
Facebook is a social networking service headquartered in Menlo Park, California. Its website was launched on February 4, 2004, by Mark Zuckerberg with his Harvard College roommates and fellow students Eduardo, Andrew McCollum, Dustin and Chris Hughes. The fouders had initially limited the websites membrship to Harvard students, but later expanded it to collges in the Boston area, the Ivy League, and Stanford Univrsity. It graually added support for students at various other universities and later to high-school students.
</ej-spellcheck>
<input id="CheckSpell" type="button" class="ejinputtext" style="height:30px" value="Spell check" (click)="checkErrors($event)" />
export class SpellCheckComponent {
public dictionary: any;
constructor() {
this.dictionary = {
dictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/CheckWords",
customDictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/AddToDictionary"
};
}
checkErrors(){
let spellObj = $('#SpellCheck').data('ejSpellCheck');
spellObj.showInDialog();
}
onDialogClose(args) {
if (args.requestType == "dialogClose") {
alert(args.updatedText);
}
}
}
It is possible to predict the error word details before starting the SpellCheck operations through dialog mode by using the client side event start
. The below code example describes the above behavior.
<ej-spellcheck id="SpellCheck" contenteditable="true" style="display:block" [dictionarySettings]="dictionary" [contextMenuSettings.enable]="false" (start)="onSpellCheckStart($event)">
Facebook is a social networking service headquartered in Menlo Park, California. Its website was launched on February 4, 2004, by Mark Zuckerberg with his Harvard College roommates and fellow students Eduardo, Andrew McCollum, Dustin and Chris Hughes. The fouders had initially limited the websites membrship to Harvard students, but later expanded it to collges in the Boston area, the Ivy League, and Stanford Univrsity. It graually added support for students at various other universities and later to high-school students.
</ej-spellcheck>
<input id="CheckSpell" type="button" class="ejinputtext" style="height:30px" value="Spell check" (click)="checkErrors($event)" />
export class SpellCheckComponent {
public dictionary: any;
constructor() {
this.dictionary = {
dictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/CheckWords",
customDictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/AddToDictionary"
};
}
checkErrors(){
let spellObj = $('#SpellCheck').data('ejSpellCheck');
spellObj.showInDialog();
}
onSpellCheckStart(args) {
if (args.requestType == "spellCheckDialog") {
alert(JSON.stringify(args.errorWords));
}
}
}
You can get the corrected text content details before updating it into target element with the help of the client side event complete
as mentioned in the below code example.
<ej-spellcheck id="SpellCheck" contenteditable="true" style="display:block" [dictionarySettings]="dictionary" [contextMenuSettings.enable]="false" (complete)="onSpellCheckComplete($event)">
Facebook is a social networking service headquartered in Menlo Park, California. Its website was launched on February 4, 2004, by Mark Zuckerberg with his Harvard College roommates and fellow students Eduardo, Andrew McCollum, Dustin and Chris Hughes. The fouders had initially limited the websites membrship to Harvard students, but later expanded it to collges in the Boston area, the Ivy League, and Stanford Univrsity. It graually added support for students at various other universities and later to high-school students.
</ej-spellcheck>
<input id="CheckSpell" type="button" class="ejinputtext" style="height:30px" value="Spell check" (click)="checkErrors($event)" />
export class SpellCheckComponent {
public dictionary: any;
constructor() {
this.dictionary = {
dictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/CheckWords",
customDictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/AddToDictionary"
};
}
checkErrors(){
let spellObj = $('#SpellCheck').data('ejSpellCheck');
spellObj.showInDialog();
}
onSpellCheckComplete(args) {
if (args.requestType == "changeErrorWord") {
alert(args.targetText);
}
}
}
Context Menu Mode
SpellCheck provides default context menu options to perform the SpellCheck operations. It also allows to define additional custom context menu options.
The options that are available under contextMenuSettings
are as follows,
-
**enable**
- Enables/disables the context menu option in SpellCheck. -
**menuItems**
- Contains the options to perform SpellCheck operations.
Default Menu Options
The menu items contains the following options to perform the SpellCheck operation.
- Ignore All
- Add to Dictionary
The following code snippet shows how to enable the context menu settings in SpellCheck and to make use of it with default available options.
<ej-spellcheck id="SpellCheck" contenteditable="true" style="display:block" [dictionarySettings]="dictionary" [contextMenuSettings.enable]="true">
Facebook is a social networking service headquartered in Menlo Park, California. Its website was launched on February 4, 2004, by Mark Zuckerberg with his Harvard College roommates and fellow students Eduardo, Andrew McCollum, Dustin and Chris Hughes. The fouders had initially limited the websites membrship to Harvard students, but later expanded it to collges in the Boston area, the Ivy League, and Stanford Univrsity. It graually added support for students at various other universities and later to high-school students.
</ej-spellcheck>
<input id="CheckSpell" type="button" class="ejinputtext" style="height:30px" value="Spell check" (click)="checkErrors($event)" />
export class SpellCheckComponent {
public dictionary: any;
constructor() {
this.dictionary = {
dictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/CheckWords",
customDictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/AddToDictionary"
};
}
checkErrors(){
let spellObj = $('#SpellCheck').data('ejSpellCheck');
spellObj.validate();
}
}
NOTE
For default menu items, the id must be defined the same as mentioned in the above code example – as we have processed the menus based on this id within our source.
Custom Menu Options
Apart from the default available options, it is also possible to add custom menu options to the context-menu list.
The following code example depicts how to add the custom menu items into the context menu settings.
<ej-spellcheck id="SpellCheck" contenteditable="true" style="display:block" [dictionarySettings]="dictionary" [contextMenuSettings.enable]="true" [contextMenuSettings.menuItems]="menuItems">
Facebook is a social networking service headquartered in Menlo Park, California. Its website was launched on February 4, 2004, by Mark Zuckerberg with his Harvard College roommates and fellow students Eduardo, Andrew McCollum, Dustin and Chris Hughes. The fouders had initially limited the websites membrship to Harvard students, but later expanded it to collges in the Boston area, the Ivy League, and Stanford Univrsity. It graually added support for students at various other universities and later to high-school students.
</ej-spellcheck>
<input id="CheckSpell" type="button" class="ejinputtext" style="height:30px" value="Spell check" (click)="checkErrors($event)" />
export class SpellCheckComponent {
public dictionary: any;
public menuItems:any;
constructor() {
this.dictionary = {
dictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/CheckWords",
customDictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/AddToDictionary"
};
this.menuItems = [
{ id: "Ignore", text: "IgnoreOnce" },
{ id: "IgnoreAll", text: "Ignore All" },
{ id: "AddToDictionary", text: "Add To Dictionary" }
];
}
checkErrors(){
let spellObj = $('#SpellCheck').data('ejSpellCheck');
spellObj.validate();
}
}
NOTE
The id given for the custom menu items must be unique.
Handling Menu Actions
The client-side event contextClick
can be used to define specific actions when a click made on the custom menu items. The following code example describes the above behavior.
<ej-spellcheck id="SpellCheck" contenteditable="true" style="display:block" [dictionarySettings]="dictionary" [contextMenuSettings.enable]="true" [contextMenuSettings.menuItems]="menuItems" (contextClick)="onCustomMenuClick($event)">
Facebook is a social networking service headquartered in Menlo Park, California. Its website was launched on February 4, 2004, by Mark Zuckerberg with his Harvard College roommates and fellow students Eduardo, Andrew McCollum, Dustin and Chris Hughes. The fouders had initially limited the websites membrship to Harvard students, but later expanded it to collges in the Boston area, the Ivy League, and Stanford Univrsity. It graually added support for students at various other universities and later to high-school students.
</ej-spellcheck>
<input id="CheckSpell" type="button" class="ejinputtext" style="height:30px" value="Spell check" (click)="checkErrors($event)" />
export class SpellCheckComponent {
public dictionary: any;
public menuItems:any;
constructor() {
this.dictionary = {
dictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/CheckWords",
customDictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/AddToDictionary"
};
this.menuItems = [
{ id: "Ignore", text: "Ignore Once" },
{ id: "IgnoreAll", text: "Ignore All" },
{ id: "AddToDictionary", text: "Add To Dictionary" }
];
}
checkErrors(){
let spellObj = $('#SpellCheck').data('ejSpellCheck');
spellObj.validate();
}
onCustomMenuClick(args){
if (args.selectedOption == "Ignore") {
alert("Custom menu clicked");
}
}
}
It is possible to predict the target (error word) on which the right click is made with the use of the event contextOpen
. The below code example shows how to block the display of context menu, when right clicked on the word by setting args.cancel as true.
<ej-spellcheck id="SpellCheck" contenteditable="true" style="display:block" [dictionarySettings]="dictionary" [contextMenuSettings.enable]="true" (contextOpen)="onBeforeOpen($event)">
Facebook is a social networking service headquartered in Menlo Park, California. Its website was launched on February 4, 2004, by Mark Zuckerberg with his Harvard College roommates and fellow students Eduardo, Andrew McCollum, Dustin and Chris Hughes. The fouders had initially limited the websites membrship to Harvard students, but later expanded it to collges in the Boston area, the Ivy League, and Stanford Univrsity. It graually added support for students at various other universities and later to high-school students.
</ej-spellcheck>
<input id="CheckSpell" type="button" class="ejinputtext" style="height:30px" value="Spell check" (click)="checkErrors($event)" />
export class SpellCheckComponent {
public dictionary: any;
constructor() {
this.dictionary = {
dictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/CheckWords",
customDictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/AddToDictionary"
};
}
checkErrors(){
let spellObj = $('#SpellCheck').data('ejSpellCheck');
spellObj.validate();
}
onBeforeOpen(args){
if (args.selectedErrorWord == "Facebook") {
args.cancel=true;
}
}
}
You can get the current spell check operation arguments details with the client-side event validating
. The following code example describes the way to block the ignoreAll operation for the particular word.
<ej-spellcheck id="SpellCheck" contenteditable="true" style="display:block" [dictionarySettings]="dictionary" [contextMenuSettings.enable]="true" (validating)="onSpellChecking($event)">
This textarea sample uses a dialog to display all the textarea spell errors.
</ej-spellcheck>
<input id="CheckSpell" type="button" class="ejinputtext" style="height:30px" value="Spell check" (click)="checkErrors($event)" />
export class SpellCheckComponent {
public dictionary: any;
constructor() {
this.dictionary = {
dictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/CheckWords",
customDictionaryUrl: "http://js.syncfusion.com/ejServices/api/SpellCheck/AddToDictionary"
};
}
checkErrors(){
let spellObj = $('#SpellCheck').data('ejSpellCheck');
spellObj.validate();
}
onSpellChecking(args){
if (args.requestType == "ignoreAll" && args.ignoreWord=="textarea") {
args.cancel=true;
}
}
}