web-dev-qa-db-ja.com

基本的なツールバーでckeditorを表示する方法

class="ckeditor"の方法を使用して、Webページにckeditorを表示しています。基本的なツールバーのみを表示するようにckeditorを構成するにはどうすればよいですか。ここで、基本的なツールバーを表示するためのサンプルページを見つけましたが、それを表示する方法はドキュメントから取得していません。

http://ckeditor.com/demo

[カスタムツールバー]タブを確認し、非常に基本的なタイプのツールバーを持つ最初のサンプルを参照してください。どのように表示できますか?

ここに私のコードがあります

<body>
    <textarea class="ckeditor" id="description" rows="5" cols="15"></textarea>
</body>

私のウェブサイトのckeditorのすべてのインスタンスに基本的なツールバーを表示したい。

16
coure2011

Basicを使用すると、すべてのツールバーが表示されるため、これを使用します

CKEDITOR.config.toolbar = [
   ['Styles','Format','Font','FontSize'],
   '/',
   ['Bold','Italic','Underline','StrikeThrough','-','Undo','Redo','-','Cut','Copy','Paste','Find','Replace','-','Outdent','Indent','-','Print'],
   '/',
   ['NumberedList','BulletedList','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
   ['Image','Table','-','Link','Flash','Smiley','TextColor','BGColor','Source']
] ;
48
Monzur

前の2つの答えをまとめると、完全なソリューションが得られます。まず、「ckeditor」フォルダーの「config.js」ファイルにオプションを追加します。

 CKEDITOR.editorConfig = function( config ) {
    config.skin = 'bootstrapck';
    // Define changes to default configuration here. For example:
    // config.language = 'fr';
    // config.uiColor = '#AADC6E';
    config.toolbar_Full =
        [
            { 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 : [ 'Image','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.toolbar_Basic =
        [
            ['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink','-','About']
        ];
};

次に、HTMLファイルの「基本」構成に呼び出しを追加します。

            <textarea id="ckeditor"></textarea>
            <script type="text/javascript">
                CKEDITOR.replace( 'ckeditor',
                        {
                            toolbar : 'Basic', /* this does the magic */
                            uiColor : '#9AB8F3'
                        });
            </script>

必要なのはこれだけです。HTMLファイルで 'ckeditor.js'ファイルを呼び出すことを忘れないでください。

17
Clinton Dobbs

起動時に特定の構成を設定する必要があります。

<script type="text/javascript">
    CKEDITOR.replace( 'description',
    {
        toolbar : 'Basic', /* this does the magic */
        uiColor : '#9AB8F3'
    });
</script>

descriptionは、Webサイト上のエディターのidを参照しています。

興味深いリンク:

13
Smamatti

2018年に更新:

CKEditor にあるこれらの役立つ情報は、あなたの心のコンテンツに合わせてカスタマイズできるオンラインエディターを作成して作成しただけです!ナイトリービルドなので、静的URLは役に立たない- http://nightly.ckeditor.com から基本設定オプションに移動し、を選択するツールバー設定ボタン。

生成されたコンテンツをコピーしてivoryckeditorバンドルのconfig.jsファイル(Webフォルダー)に貼り付けると、他のファイルを変更しなくても機能するはずです。

切り取りと貼り付けの操作を示すために、次の簡単なレイアウトを作成しました。

CKEDITOR.editorConfig = function( config ) {
config.toolbarGroups = [
    { name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
    { name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
    { name: 'editing', groups: [ 'find', 'selection', 'spellchecker', 'editing' ] },
    { name: 'forms', groups: [ 'forms' ] },
    { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
    { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi', 'paragraph' ] },
    { name: 'links', groups: [ 'links' ] },
    { name: 'insert', groups: [ 'insert' ] },
    { name: 'styles', groups: [ 'styles' ] },
    { name: 'colors', groups: [ 'colors' ] },
    { name: 'tools', groups: [ 'tools' ] },
    { name: 'others', groups: [ 'others' ] },
    { name: 'about', groups: [ 'about' ] }
];

config.removeButtons = 'Cut,Copy,Paste,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript';
};
0
Tim Tyler