Enable the Spell Check As You Type feature by default, when using the CK Editor

HelenaG Grulichova asked on May 14, 2012 07:19

Enable the Spell Check As You Type feature by default, when using the CK Editor

Correct Answer

HelenaG Grulichova answered on May 14, 2012 07:19

Edit the file ~\CMSAdminControls\CKeditor\config.js and add the following code: config.scayt_autoStartup = true; directly above the config.toolbar code for the toolbar you are using.  Please see the example below:
 
    config.scayt_autoStartup = true;
    config.toolbar_Full = config.toolbar_Default =
    [
        ['Source', '-'],
        ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', 'SpellChecker', 'Scayt', '-'],
        ['Undo', 'Redo', 'Find', 'Replace', 'RemoveFormat', '-'],
        ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-'],
        ['NumberedList', 'BulletedList', 'Outdent', 'Indent', 'Blockquote', 'CreateDiv', '-'],
        ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-'],
        ['InsertLink', 'Unlink', 'Anchor', '-'],
        ['InsertImageOrMedia', 'QuicklyInsertImage', 'Table', 'HorizontalRule', 'SpecialChar', '-'],
        ['InsertForms', 'InsertInlineControls', 'InsertPolls', 'InsertRating', 'InsertYouTubeVideo', 'InsertWidget'],
        '/',
        ['Styles', 'Format', 'Font', 'FontSize'],
        ['TextColor', 'BGColor', '-'],
        ['Maximize', 'ShowBlocks']
    ];
 
 
-eh-
1 votesVote for this answer Unmark Correct answer

   Please, sign in to be able to submit a new answer.