2014年3月5日

CKEditor 參數設定

config.js

CKEDITOR.editorConfig = function( config )
{
    config.language = 'zh';
    //config.uiColor = '#AADC6E';
    //config.uiColor = '#4895FF';
   
    //config.width=800;
    //config.height=600
    //config.resize_enabled = false;
    config.toolbar = 'general';
    //config.toolbar = 'Full';
   
    config.toolbar_general =
    [
        {name:'line1',items:['Undo','Redo','Copy','Paste','PasteText','PasteFromWord']},
        {name:'line2',items:['Bold','Italic','Underline','Strike','RemoveFormat']},
        {name:'line3',items:['NumberedList','BulletedList','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock']},
        {name:'line4',items:['Link','Unlink','Image','Flash','Table','HorizontalRule','PageBreak','Source']},
            '/',
        {name:'line5',items:['Format','Font','FontSize','TextColor','BGColor','Maximize','ShowBlocks','About']},
    ];
    config.toolbar_piconly =
    [
        {name:'line1',items:['Image','Source']},
    ];
   
    /*
    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' ] }
    ];*/

};

沒有留言:

張貼留言