CKEditor howto enable Spell Checker

If you are using the CKEditor in CS-Cart then both native browser spell checking and also the integrated CK spell checker are turned off.



To enable the native browser spell checker add the following line [ disableNativeSpellChecker:false, ] to editor configuration file: js/editors/ckeditor.editor.js

<br />
CKEDITOR.replace(elm.attr('id'), {<br />
   disableNativeSpellChecker:false,<br />
   toolbar: 'Custom',<br />
   toolbar_Custom: [['Format','Font','FontSize',				..................................................<br />
.......................................................................................................................<br />
  });<br />

```<br />
<br />
once you have done this then reload/refresh your browser, you will now have native browser spell checking.<br />
<br />
If you wish to use the integrated CK Editor (connects to webspellchecker.net) spell checking this can be done with following changes:<br />
disableNativeSpellChecker:true,<br />
scayt_autoStartup:true<br />
add this to toolbar_Custome: '-','SpellChecker','Scayt'<br />
<br />
follow exmaple for Integrated spell checking: js/editors/ckeditor.editor.js<br />
```php
<br />
CKEDITOR.replace(elm.attr('id'), {<br />
   disableNativeSpellChecker:true,<br />
   scayt_autoStartup:true,<br />
   toolbar: 'Custom',<br />
   toolbar_Custom: [['Format','Font','FontSize', 'Bold','Italic','Underline','TextColor','BGColor','-','Link','Image','-','NumberedList','BulletedList','Indent','Outdent','JustifyLeft','JustifyCenter','JustifyRight','-','Source','-','SpecialChar','Subscript','Superscript','-','SpellChecker', 'Scayt']],<br />
...............................................................<br />
.................................................................<br />
.................................................................................<br />
.....................................................................................<br />
  });<br />

```<br />
<br />
[url="http://docs.cksource.com/CKEditor_3.x/Users_Guide/Spell_Checking"]Documentation for the integrated CKEditor Spell checker[/url]