2011-05-02 75 views
1

我有以下設置爲小型MCE。正如你在圖像中看到的那樣,它顯示了第三排按鈕。我不知道它來自哪裏!第三行的javascript代碼中沒有設置,但它仍然顯示在那裏。TinyMCE配置

enter image description here

tinyMCE.init({ 

     mode : "textareas", 
     theme : "advanced", 
     plugins : "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,nonbreaking,xhtmlxtras,template,advlist,fullpage", 

      theme_advanced_buttons1 : "formatselect,fontselect,fontsizeselect,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,|,outdent,indent,|,forecolor,backcolor", 
      theme_advanced_buttons2 : "mybutton,|,link,unlink,|,hr,removeformat,pastetext,pasteword,cleanup,|,undo,redo,|,code", 
      theme_advanced_toolbar_location : "top", 
      theme_advanced_toolbar_align : "left", 
      theme_advanced_statusbar_location : "none", 
      theme_advanced_resizing : true, 
      convert_urls : false, 
      fullpage_default_doctype: "", 

     content_css : "css/content.css", 
     cleanup : false, 

     template_external_list_url : "lists/template_list.js", 
     external_link_list_url : "lists/link_list.js", 
     external_image_list_url : "lists/image_list.js", 
     media_external_list_url : "lists/media_list.js", 

    }); 

回答

1

我不得不添加下面的行來修復它。

theme_advanced_buttons3 : "" 
+0

+1有效的解決方案 – Thariama 2011-05-03 08:10:04

0

從按鈕的第二行刪除mybutton和東西不見了。

我懷疑你在插件行或其中一個按鈕行中有錯誤。

+0

我刪除了'myButton',但對第三行沒有任何影響。在mybutton和第三行之間有什麼關係? – 2011-05-02 17:11:04

+0

我在本地系統中測試了你的配置,我刪除了「mybutton」 - 第三行不見了 – Thariama 2011-05-02 17:40:06

+0

奇怪的原因在我的情況下,我只是把這條線固定了。 theme_advanced_buttons3:「」。 – 2011-05-02 18:32:09