0

ツールバーにカスタム ボタンを追加したい。

ここの情報に基づいて: http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Toolbar私はこの config.js を持っています:

 config.toolbar = 'MyToolbar';

config.toolbar_MyToolbar =
[
    { name: 'document', items: ['Source', '-', 'Save', 'NewPage', 'DocProps', 'Preview', 'Print', '-', 'Templates'] },
    { name: 'clipboard', items: ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo'] },
    { name: 'editing', items: ['Find', 'Replace', '-', 'SelectAll', '-', 'SpellChecker', 'Scayt'] },
    {
        name: 'forms', items: ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton',
          'HiddenField']
    },
    '/',
    { name: 'basicstyles', items: ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat'] },
    {
        name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv',
        '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl']
    },
    { name: 'links', items: ['Link', 'Unlink', 'Anchor'] },
    { name: 'insert', items: ['customImage', 'Flash', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'PageBreak', 'Iframe'] },
    '/',
    { name: 'styles', items: ['Styles', 'Format', 'Font', 'FontSize'] },
    { name: 'colors', items: ['TextColor', 'BGColor'] },
    { name: 'tools', items: ['Maximize', 'ShowBlocks', '-', 'About'] }
];


config.extraPlugins = 'customImage';

ただし、ツールバーは変更されません。デフォルトのままです。

4

1 に答える 1

0

ckeditor にボタンを追加する場合は、次の 3 つの手順を実行する必要があります。

  1. ボタン用の独自のプラグインを次のように記述します。

    (function () { // ボタンをクリックしたときの関数 var a = { exec: function (editor) { ボタンをクリックしたときのアクション } }, b = 'videomanager'; CKEDITOR.plugins.add(b, { init: function (editor ) { editor.addCommand(b, a); editor.ui.addButton('videomanager', { label: 'Video Manager', icon: this.path + 'videomanager.png', command: b }); } }) ; })();

  2. プラグインを ckeditor config に登録します。

  3. ツールバーに追加

コードをフォーマットできません

于 2013-05-14T09:34:48.203 に答える