1

我正在尝试在 ckeditor 中添加一个外部插件,但看起来我没有正确注册我的插件并且它没有显示。

1.- 我尝试将其直接添加到 CKEditor 配置文件中,但没有成功。

CKEDITOR.editorConfig = function(config) {
config.toolbar = [
['Bold'],['Italic'],['myplugin']
]
};

2.-尝试在启动CKEditor时将其添加到html文件中,但也没有奏效。

var editor = CKEDITOR.replace( 'editor1',
{

removePlugins : 'forms,table,tabletools',
extraPlugins : 'msugetprop,msuforms,msutable,msutabletools,msumobile',

toolbar : 
    [
        ['Cut','Copy','PasteText','Preview'],
        ['Undo','Redo','-','SelectAll'],
    ['MsuForm','MsuGetProp','MsuCheckbox', 'MsuRadio', 'MsuTextField',         'MsuTextarea', 'MsuSelect', 'MsuButton', 'MsuTable', 'MsuHiddenField'],
    '/',
    ['Styles','-','NumberedList','BulletedList','-','CreateDiv'],
                                                                                       ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
    ['Link','Unlink','Anchor'],
    ['Source','-','About'],
    ['myplugin'],
    ]
});

3.- 我的插件在 /ckeditor/plugins/myplugin 下,文件名为 plugin.js

(function() {
var o = { exec: function(p) {
url = baseUrl + "/GetSomeData";
$.post(url, function(response) {
alert(response)
});
}
};
CKEDITOR.plugins.add('myplugin', {
init: function(editor) {
editor.addCommand('myplugin', o);
editor.ui.addButton('myplugin', {
label: 'myplugin',
icon: this.path + 'myplugin.png',
command: 'myplugin'
});
}
});
})();

我错过了什么?

4

1 回答 1

1

解决了。

忘记在 extraPlugins 下添加“myplugin”。

于 2012-12-05T06:31:43.790 回答