如何配置CKEditor-4内联编辑器?

时间:2013-08-25 13:34:29

标签: ckeditor

我有标准安装(如样本):

<meta charset="utf-8"></meta>
<script src="../ckeditor.js"></script>

HTML内容包含许多<div contenteditable="true">块。我需要通过本地或外部configTypeX.js文件

配置每个编辑器
  <script>
   CKEDITOR.on( 'instanceCreated', function( event ) {
     var editor = event.editor, element = editor.element;
         if ( element.is( 'h1', 'h2', 'h3' ) ) {
        editor.on( 'configLoaded', function() {
            editor.config.toolbar = [
                [ 'Source', '-', 'Bold', 'Italic' ]
            ];  // BUG: about "Source"?? NOT AT INTERFACE!
        }); 
         } else {
            // WHERE PUT THIS ITEM?
    customConfig: 'configType2.js';
         }
   });
  </script>

所以,我的问题是

  1. 如何在此上下文中执行customConfig
  2. 哪里有“最完整的文档”,关于没有在线配置工具的配置菜单(editor.config.toolbar),在哪里我可以理解如何使用正确的名称放置和删除菜单? Here没有关于如何在完整安装中修复“Source”的错误。

  3. 我知道,

    git clone git://github.com/ckeditor/ckeditor-releases.git
    cd ckeditor-releases
    cp samples/inlineall.html samples/myinline.html 
    

    并使用上面的代码编辑samples/myinline.html

1 个答案:

答案 0 :(得分:8)

  1. 对于内联编辑器,隐藏了标准Source按钮,因为除了wysiwyg之外,不可能有其他模式。因此,对于那些编辑器,创建了新的插件 - sourcedialog,但默认情况下它不包含在任何构建中。您可以使用online CKBuilder或使用带有all参数的presets之一来使用此插件构建编辑器。例如:./build.sh full all。还要记得加载sourcedialog插件(使用config.extraPlugins = 'sourcedialog')。

  2. 如果您想自由配置内联编辑器,那么您应该查看inlinebycode示例。首先,您需要在可编辑元素上禁用自动编辑器初始化,然后在要成为编辑者的元素上调用CKEDITOR.inline()

    // We need to turn off the automatic editor creation first.
    CKEDITOR.disableAutoInline = true;
    
    CKEDITOR.inline( 'editable1', {
        customConfig: 'editableConfig.js'
    } );
    CKEDITOR.inline( 'editable1', {
        toolbar: [ ... ]
    } );