AD
Administrator
Syncfusion Team
December 8, 2006 04:20 PM UTC
Hi Joakin,
Spell Check control is integrated in RichTextEditor control.Now it is not possible to hide the message when SpellCheck folder is not copied to the root of the application.
But you can hide this message by creating empty folder named as 'SpellCheck' and also remove the 'SpellCheck' option in Edit Insert Built-in Toolbar of RichTextEditor Control.
Please insert the following code snippet to remove the SpellCheck option.
[C#]
//Create instance for Edit Insert Build-In ToolBar
ToolBar EditInsertTools = (ToolBar)RichTextEditor1.FindControl("editInsertTools");
//Create instance for SpellCheck ToolBar Item
ToolBarItem SpellCheck = EditInsertTools.Items.Find(12);
//Remove SpellCheck Item
EditInsertTools.Items.Remove(SpellCheck);
[VB]
'Create instance for Edit Insert Build-In ToolBar
Private EditInsertTools As ToolBar = CType(RichTextEditor1.FindControl("editInsertTools"), ToolBar)
'Create instance for SpellCheck ToolBar Item
Private SpellCheck As ToolBarItem = EditInsertTools.Items.Find(12)
'Remove SpellCheck Item
EditInsertTools.Items.Remove(SpellCheck)
Thank you for using syncfusion products.
Regards,
Sureshsekaran.