Ckeditor and Spellchecker.net

If you have questions about using mojoPortal, you can post them here.

You may want to first review our site administration documentation to see if your question is answered there.

This thread is closed to new posts. You must sign in to post in the forums.
3/1/2011 10:28:11 AM
Gravatar
Total Posts 125

Ckeditor and Spellchecker.net

Hello.

 

Is there a way to disable Spellchecker.net totally in Ckeditor ? I think kinda slow down the editor and is useless for us.

 

Thanks

3/2/2011 2:12:56 PM
Gravatar
Total Posts 18439

Re: Ckeditor and Spellchecker.net

Hi Costas,

You can use a custom config file for the CKeditor by putting this in user.config

<add key="CKEditor:ConfigPath" value="~/ClientScript/ckeditor-mojoconfig.js"/>

and change to a custom file by saving the ckeditor-mojoconfig.js as ckeditor-mycustom.config

then make the config setting match your file name.

then in the toolbar declarations in the config file you can remove the items for 'SpelChecker' and 'Scayt' (SCAYT means spell check as you type)

Hope it helps,

Joe

 

3/2/2011 3:32:38 PM
Gravatar
Total Posts 125

Re: Ckeditor and Spellchecker.net

Thank you Joe, works very well.

 

 

3/5/2011 7:54:20 AM
Gravatar
Total Posts 125

Re: Ckeditor and Spellchecker.net

Hello Joe,

A small problem still. When writing within CKeditor, i see the red underline even after removing what you suggested above.

 

Thanks

3/5/2011 8:17:05 AM
Gravatar
Total Posts 18439

Re: Ckeditor and Spellchecker.net

I think there is no way to control that, it comes from the web browser not from the editor. Some web browsers have built in spell checking that puts those underlines on misspelled words. If you try different browsers IE ,FF, Chrome, you will see that it does not happen in all web browsers.

Best,

Joe

3/6/2011 7:04:48 AM
Gravatar
Total Posts 125

Re: Ckeditor and Spellchecker.net

Joe,

I have disabled the spell check in Firefox and still the red underline happens. Same with ALL the browsers.

So maybe i have missed something.

 

3/7/2011 12:15:27 PM
Gravatar
Total Posts 18439

Re: Ckeditor and Spellchecker.net

You could try adding this in your custom ckeditor config file

 

config.scayt_autoStartup = false;
config.disableNativeSpellChecker = false;
 
Hope it helps,
 
Joe
3/7/2011 5:24:48 PM
Gravatar
Total Posts 125

Re: Ckeditor and Spellchecker.net

That

 

config.scayt_autoStartup = false;
config.disableNativeSpellChecker = false;

 

Did the trick !

 

Thanks !

You must sign in to post in the forums. This thread is closed to new posts.