如何更改CKEditor的默认按钮

时间:2014-09-09 21:05:02

标签: html ckeditor textarea

很抱歉,如果这看起来非常简单,但我通过搜索谷歌找不到我的问题的答案。

我想更改CKEditor的默认布局。我有几个textareas的形式应该转换为ckeditor,所以正如文档所说,我把它们改为:

class="ckeditor"

但是在加载表单时,所有textareas都会打开,其中包含完整按钮,而我想过滤一些按钮。一个显而易见的解决方案是单独更改每个文本区域的布局。但是,您是否知道一步到位(如更改默认布局,如果它存在的话)?

感谢您阅读

1 个答案:

答案 0 :(得分:0)

我从here

找到答案

//这实际上是默认值。

config.toolbar =
[
    { 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' ] },
    '/',
    { name: 'styles',      items : [ 'Styles','Format','Font','FontSize' ] },
    { name: 'colors',      items : [ 'TextColor','BGColor' ] },
    { name: 'tools',       items : [ 'Maximize', 'ShowBlocks','-','About' ] }
];

只需删除您不想进入textarea的项目

其他默认值也可以通过config

设置