CKEditor:如何隐藏拼写检查按钮

时间:2015-01-11 04:55:57

标签: javascript ckeditor

我一直在无情地删除按钮/插件,但我无法找到如何删除拼写检查按钮。我设法删除了SCAYT插件,以便不再显示,但拼写检查按钮不会让步:

CKEDITOR.editorConfig = function( config ) {
    config.resize_enabled = false;
    config.removeButtons = 'Cut,Copy,Paste,PasteText,PasteFromWord,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript,addFile,Image,Table,Styles,Format,Maximize,HorizontalRule,Unlink,Blockquote,Indent,Outdent,RemoveFormat,Source,Spell';
    config.removePlugins = 'about,specialchar,scayt,spellchecker,elementspath,resize';
};

我还尝试添加各种拼写版本以删除按钮,例如拼写检查,拼写检查,拼写等。我需要设置什么?

1 个答案:

答案 0 :(得分:16)

如果你只想删除按钮,但保留插件,那么只需使用:

config.removeButtons = 'Scayt';

至于删除插件,以下配置应该完成这项工作:

config.removePlugins = 'wsc,scayt';