我有标准安装(如样本):
<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>
所以,我的问题是
customConfig
?editor.config.toolbar
),在哪里我可以理解如何使用正确的名称放置和删除菜单? Here没有关于如何在完整安装中修复“Source”的错误。我知道,
git clone git://github.com/ckeditor/ckeditor-releases.git
cd ckeditor-releases
cp samples/inlineall.html samples/myinline.html
并使用上面的代码编辑samples/myinline.html
。
答案 0 :(得分:8)
对于内联编辑器,隐藏了标准Source
按钮,因为除了wysiwyg
之外,不可能有其他模式。因此,对于那些编辑器,创建了新的插件 - sourcedialog,但默认情况下它不包含在任何构建中。您可以使用online CKBuilder或使用带有all
参数的presets之一来使用此插件构建编辑器。例如:./build.sh full all
。还要记得加载sourcedialog
插件(使用config.extraPlugins = 'sourcedialog'
)。
如果您想自由配置内联编辑器,那么您应该查看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: [ ... ]
} );