Kiwi
Kiwi

Reputation: 2773

ckeditor buttons not showing

I have the following setup for my 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' },
    ]
});

but for some reason the print button isn't showing. the plugin is in the folder. (the same is for preview)

but when I add another plugin (e.g. find), it shows in the toolbar just fine. this is the result in the view: error

any clue why it isn't loaded?

Upvotes: 1

Views: 450

Answers (1)

Idrees Samim
Idrees Samim

Reputation: 463

It seems that the print button is not available for the inline editor.

Upvotes: 1

Related Questions