Проверка орфографии не работает в CKEditor

Проверка орфографии не работает в моем CKEditor. Я пробовал disableNativeSpellChecker = false, но тщетно. Вот мой config.js. Моя версия CKEditor 4.5.6 Любая идея?

CKEDITOR.editorConfig = function( config ) {
// Define changes to default configuration here.
// For complete reference see:
// http://docs.ckeditor.com/#!/api/CKEDITOR.config
config.disableNativeSpellChecker = true;
// The toolbar groups arrangement, optimized for two toolbar rows.
config.toolbarGroups = [
    { name: 'clipboard',   groups: [ 'clipboard', 'undo' ] },
    { name: 'editing',     groups: [ 'find', 'selection'] },
    { name: 'links' },
    { name: 'insert' },
    { name: 'forms' },
    { name: 'tools' },
    { name: 'document',    groups: [ 'mode', 'document', 'doctools' ] },
    { name: 'others' },
    { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
    { name: 'paragraph',   groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
    { name: 'styles' },
    { name: 'colors' },
    { name: 'about' }
];

// Use line below for line break in toolbar
//      '/',

// Html encode ouput
config.htmlEncodeOutput = true;

config.removePlugins = 'elementspath,maximize,scayt';

// Remove some buttons provided by the standard plugins, which are
// not needed in the Standard(s) toolbar.
config.removeButtons = 'Strike,Subscript,Superscript,Source,About,Styles,Blockquote,Link,Unlink,Anchor,Image,Table,HorizontalRule,SpecialChar';

// Set the most common block elements.
config.format_tags = 'p;h1;h2;h3;pre';

// Simplify the dialog windows.
config.removeDialogTabs = 'image:advanced;link:advanced';
};

person VPP    schedule 07.05.2016    source источник
comment
Если удерживать CTRL и щелкнуть правой кнопкой мыши, появится контекстное меню.   -  person pbarney    schedule 21.09.2019


Ответы (2)


Интегрирована проверка орфографии браузера, добавив следующий код в config.js

config.disableNativeSpellChecker = false;
config.removePlugins = 'liststyle,tabletools,scayt,menubutton,contextmenu';
person VPP    schedule 08.05.2016
comment
Почему вы удалили так много плагинов? Я предполагаю, что вам нужно удалить только плагин contextmenu? - person Mugen; 19.08.2018

Удерживая нажатой клавишу SHIFT, щелкните правой кнопкой мыши по тексту.

В этот момент будет отображаться обычное контекстное меню с опциями.

В Linux вы можете использовать клавиши SHIFT или CONTROL.

На Mac вы можете использовать клавиши SHIFT или COMMAND.

Вот скриншоты С ключом-модификатором и БЕЗ него.

Без клавиши SHIFT

С помощью клавиши SHIFT

person Diego Perini    schedule 27.03.2018