开发者

CKEditor Defining Custom Toolbar

开发者 https://www.devze.com 2023-04-12 12:14 出处:网络
I am using CKEditor and have defined a custom toolbar in the config.js file. However, this custom toolbar does not appear when I refresh the page where I have the CKEditor appearing.

I am using CKEditor and have defined a custom toolbar in the config.js file.

However, this custom toolbar does not appear when I refresh the page where I have the CKEditor appearing.

Below is my custom toolbar in the config.js file.

CKEDITOR.editorConfig = function( config )
{
    // Define changes to default configuration here. For example:
    // config.language = 'fr';
    // config.uiColor = '#AADC6E';
    config.toolbar = 'Custom';

    config.toolbar_Custom =
    [
        { name: 'document', items : [ 'NewPage','Preview' ] },
        { name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] },
        { name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','Scayt' ] },
        { name: 'insert', items : [ 'Image','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'
                 ,'Iframe' ] },
                '/',
        { name: 'styles', items : [ 'Styles','Format' ] },
        { name: 'basicstyles', items : [ 'Bold','Italic','Strike','-','RemoveFormat' ] },
        { name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','开发者_如何学CBlockquote' ] },
        { name: 'links', items : [ 'Link','Unlink','Anchor' ] },
        { name: 'tools', items : [ 'Maximize','-','About' ] }
    ];
};

Is there anything else that I need to do other than just adding the toolbar to the config file.

Thanks for your time and help.


There are two things that could be happening. One, your config.js file could be cached, so it's loading the previous file from before your changes were made, in which case you need to either clear your browser cache or hit ctrl-F5 in your browser to fully reload your page. Or two, you're using a combo-loaded (and minified) config.js file, which would mean that you need to run the packaging tool every time you make changes to the file. See this for more info on the packaging tool. Hope that helps!

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号