2013-10-16 62 views
0

我有這樣的配置:CKEditor的告訴我雙風格工具欄

$(document).ready(function(){ 
    CKEDITOR.replace('editor', { 
     language : 'ru', 
     toolbarGroups : [ 
      { name: 'history', groups: [ 'redo', 'undo' ] }, 
      { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] }, 
      { name: 'paragraph', groups: [ 'list', 'indent', 'align' ] }, 
      { name: 'links' }, 
      { name: 'styles', items: [ 'Font', 'FontSize' ] }, 
     ] 
    }); 
}); 

但如果我嘗試在「樣式」設置execatly項目,CKEditor的告訴我的風格雙工具欄: enter image description here

+0

您是否嘗試過簡單地刪除它們就像你在最後一組做工具欄組應該只定義組,而不是項目?刪除此部分的含義:',項目:['Font','FontSize']' – Nenotlep

回答

0

你眼花繚亂toolbarGroupstoolbar設置。

{ name: 'styles', items: [ 'Font', 'FontSize' ] }, 

替換這條線:

{ name: 'styles' },