如何從CKEditor文本編輯器中刪除某些功能?我只需要像粗體等基本功能。從CKEditor文本編輯器中刪除一些功能
config.plugins = 'usefulPlugin, anotherUsefulPlugin, ...'
另一種可能性是remove undesired plugins從當前配置:
下面如何從CKEditor文本編輯器中刪除某些功能?我只需要像粗體等基本功能。從CKEditor文本編輯器中刪除一些功能
config.plugins = 'usefulPlugin, anotherUsefulPlugin, ...'
另一種可能性是remove undesired plugins從當前配置:
下面是CKEditor的
的一些基本設置config.toolbar = 'Full';
config.toolbar_Full =
[
{ name: 'document', items : [ 'Source','-','Save','NewPage','DocProps','Preview','Print','-','Templates' ] },
{ name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] },
{ name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','SpellChecker', 'Scayt' ] },
{ name: 'forms', items : [ 'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton',
'HiddenField' ] },
'/',
{ name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] },
{ name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote','CreateDiv',
'-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','BidiLtr','BidiRtl' ] },
{ name: 'links', items : [ 'Link','Unlink','Anchor' ] },
{ name: 'insert', items : [ 'Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','Iframe' ] },
'/',
{ name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] },
{ name: 'colors', items : [ 'TextColor','BGColor' ] },
{ name: 'tools', items : [ 'Maximize', 'ShowBlocks','-','About' ] }
];
config.toolbar_Basic =
[
['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink','-','About']
];
工具欄!=功能。插件==功能。要刪除功能'config.removePlugins'或'config.plugins'應該被使用。 – oleq
,從編輯器刪除功能,你應該在your config像調整config.plugins
config.removePlugins = 'unwantedPlugin, anotherUnwantedPlugin, ...'
此外,您可以使用official CKEditor builder並通過選擇在GUI中找到有用的東西來創建自己的編輯器包。
畢竟,你可以adjust the toolbar。請注意,更改工具欄不會影響在您的編輯器實例中運行的功能 - 它們仍然被加載,並且可以工作,但無法通過工具欄訪問。如果你不控制它,這可能是一個麻煩製造者。
請閱讀CKEditor文檔,再加上您的標題有誤導性,我認爲您有其他問題 –
工具欄的解釋請參見http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Toolbar – Oswald
不明白爲什麼人們反對票。這並不像看起來那麼明顯。 – oleq