ckeditor按钮未显示

时间:2015-07-16 09:29:15

标签: javascript ckeditor

我的ckeditor有以下设置:

CKEDITOR.inline('editor1', {
    startupFocus: true,
    extraPlugins: 'sharedspace',
    removePlugins: 'forms',
    sharedSpaces: {
        top: 'top',
    },
    toolbarGroups: [
        { name: 'print' },
        { name: 'stuff', groups:['print','preview','find' ]},
        '/',
        { name: 'document' },
        { name: 'clipboard', groups: ['clipboard', 'undo'] },
        { name: 'editing', groups: ['find', 'selection', 'spellchecker'] },
        '/',
        { name: 'basicstyles', groups: ['basicstyles', 'cleanup'] },
        { name: 'paragraph', groups: ['list', 'indent', 'blocks', 'align', 'bidi'] },
        { name: 'links' },
        { name: 'insert' },
        '/',
        { name: 'styles' },
        { name: 'colors' },
        { name: 'tools' },
        { name: 'others' },
    ]
});

但由于某种原因,打印按钮不显示。该插件位于该文件夹中。 (同样用于预览)

但是当我添加另一个插件(例如find)时,它在工具栏中显示就好了。这是视图中的结果: error

为什么它没有加载?

1 个答案:

答案 0 :(得分:1)

似乎打印按钮不适用于内联编辑器。