我在将源按钮添加到CKEditor 4的工具栏时遇到了问题。我今天刚刚下载了新的CKEditor。
我正在使用名为oConfig的配置对象:
oConfig.toolbar = 'Custom';
oConfig.toolbar_Custom = [
['Bold', 'Source', 'Italic']
];
工具栏只显示Bold和Italic按钮。来自CKEditor文档的This example告诉我它应该正常工作。
答案 0 :(得分:13)
有两个原因可能发生:
您已下载基本软件包,其中未包含sourcearea插件。
您在内联模式下使用CKEditor。源模式尚未在内联模式下可用。
答案 1 :(得分:12)
未来的googlers,对于CKEditor v4.2,现在有一个插件可以在内联编辑模式下查看源代码。
答案 2 :(得分:8)
这是我制作的插件:
首先,在ckeditor/plugins/
内创建一个名为“htmlSource”的新文件夹,在其中创建一个名为“plugin.js”的文件,并在此文件中粘贴以下代码:
//-----------------------------Start Plugin Code-------------------------
plugInName = 'htmlSource';
CKEDITOR.plugins.add(plugInName,
{
init: function (editor) {
editor.addCommand('htmlDialog', new CKEDITOR.dialogCommand('htmlDialog'));
editor.ui.addButton(plugInName, {
label: 'Html Source',
icon: 'http://www.example.com/images/btn_html.png',
command: 'htmlDialog'
});
CKEDITOR.dialog.add('htmlDialog', function (editor) {
return {
title: 'Fuente Html',
minWidth: 600,
minHeight: 400,
contents: [
{
id: 'general',
label: 'Settings',
elements:
[
// UI elements of the Settings tab.
{
type: 'textarea',
id: 'contents',
rows: 25,
onShow: function () {
this.setValue(editor.container.$.innerHTML);
},
commit: function (data) { //--I get only the body part in case I paste a complete html
data.contents = this.getValue().replace(/^[\S\s]*<body[^>]*?>/i, "").replace(/<\/body[\S\s]*$/i, "");
}
}
]
}
],
onOk: function () {
var data = {};
this.commitContent(data);
$(editor.container.$).html(data.contents);
},
onCancel: function () {
// console.log('Cancel');
}
};
});
}
});
//--------------------Plugin Code Ends Here--------------------
请注意,有一个名为icon的参数,你必须设置插件按钮图像的网址,我只是放一个示例网址('http://www.example.com/images/btn_html.png')你必须使用有效的一个来查看插件按钮
要在ckeditor工具栏中设置此插件,您必须在config.js文件中对其进行配置,例如:
CKEDITOR.editorConfig = function (config) {
config.plugins =
'htmlSource,' + //Here is the plugin
'about,' +
'a11yhelp,' +
'basicstyles,' +
'bidi,' +
.....;
config.toolbar = 'Full'; //Add the plugin to the full toolbar
config.toolbar_Full = //Note that our plugin will be the first button in the toolbar
[
['htmlSource', '-', 'Save', 'NewPage', 'Preview', '-', 'Templates'],
['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Print', 'SpellChecker', 'Scayt'],
['Undo', 'Redo', '-', 'Find', 'Replace', '-', 'SelectAll', 'RemoveFormat'],
['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],
['BidiLtr', 'BidiRtl'],
'/',
['Bold', 'Italic', 'Underline', 'Strike', '-', 'Subscript', 'Superscript'],
['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote', 'CreateDiv'],
['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
['Link', 'Unlink', 'Anchor'],
['Image', 'Flash', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'PageBreak'],
'/',
['Styles', 'Format', 'Font', 'FontSize'],
['TextColor', 'BGColor'],
['Maximize', 'ShowBlocks', '-', 'About']
];
};
我知道这是有效的,所以如果你遇到麻烦请告诉我。
答案 3 :(得分:3)
对我来说,它有助于使用:
config.extraPlugins = 'htmlSource';
答案 4 :(得分:0)
对于CKEditor 4.1.1,上述两个答案的组合对我有用,虽然我不得不做一些小的调整。在这里说“---启动插件---”的部分,我能够按原样复制。对于配置选项,我必须使用
CKEDITOR.config.extraPlugins = 'htmlSource'; // Notice: "extraPlugins".
CKEDITOR.config.toolbar = 'Full';
CKEDITOR.config.toolbar_Full = ...;
而不是
CKEDITOR.editorConfig = function (config) { ...
最后,这一切都是在内联模式下完成的,并且使用普通的vanilla安装,即我没有必要下载任何额外的插件来使其工作。
答案 5 :(得分:-1)
我正在使用版本4的Julio插件,需要进行调整以避免此JS错误:
TypeError:$(...)。html不是函数
我交换了这一行:
$(editor.container.$).html(data.contents);
用这个:
// See http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-setData
editor.setData(
data.contents,
function() {
this.checkDirty();
}
);
我的猜测是Julio的解决方案需要jQuery,而我的方法是CKEditor方法(或者至少更接近它!)。