为什么不能激活SCAYT功能

时间:2018-08-31 15:13:59

标签: ckeditor4.x

*嗨,大家好,当我启用scayt拼写检查器按钮Appaer时,我对ckeditor 4的scayt插件有问题,但是我可以在IE 11.0.9600.19080上激活用于拼写检查的功能。 我在config.js中的配置文件:

config.allowedContent = true; //Allow all content
   config.disableNativeSpellChecker = false; //Enable native spell checking      (browser)
    config.scayt_autoStartup = true; // Enable SCAYT on editor startup
    config.scayt_sLang = 'fr_FR';
    config.extraPlugins = 'scayt';
    config.toolbar =
        [
            [ 'Find','Replace','-','SelectAll','-','Scayt' ]]

感谢您的回复*

1 个答案:

答案 0 :(得分:0)

您可以从简单的演示开始,并根据需要逐步添加所有其他选项。

CKEDITOR.config.toolbar = [{
    name: 'editing',
    items: ['Scayt', 'Cut', 'Copy', 'Paste', 'Bold', 'Italic', 'Underline']
}];

CKEDITOR.replace('container', {
    scayt_autoStartup: true,
    grayt_autoStartup: true
});

https://jsfiddle.net/jalners/j4ytgb2v/