2013-07-24 107 views
10

我使用tinymce插件在textarea中格式化文本。我也在使用圖像插入/編輯圖像按鈕(用於內嵌圖像),但瀏覽文件按鈕似乎沒有出現在點擊它後打開的對話框中,所以我現在無法選擇文件。tinymce - 瀏覽圖像按鈕不可見插入/編輯彈出

下面是插件的init和我希望的一些圖片,看看

tinymce.init({ 
      selector: "textarea", 
      theme: "modern", 
      plugins: [ 
       "advlist autolink lists link image charmap print preview hr anchor pagebreak", 
       "searchreplace wordcount visualblocks visualchars code fullscreen", 
       "insertdatetime media nonbreaking save table contextmenu directionality", 
       "emoticons template paste textcolor moxiemanager" 
      ], 
      toolbar1: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link code image | forecolor backcolor emoticons", 
      image_advtab: true, 
      statusbar : false, 
      menubar : false, 
      force_p_newlines : false, 
      force_br_newlines : true, 
      convert_newlines_to_brs : true, 
      forced_root_block : false, 
      paste_text_linebreaktype : "br", 
      width : 730, 
      height : 300, 
      templates: [ 
      {title: 'Test template 1', content: 'Test 1'}, 
      {title: 'Test template 2', content: 'Test 2'} 
      ] 
     }); 

this is what i want ti to be like this is what i have

+0

你filebrowser? – Bora

+0

什麼是文件瀏覽器 – Archer

+0

關於文件瀏覽器[Doc1](http://www.tinymce.com/wiki.php/TinyMCE3x:How-to_implement_a_custom_file_browser)[Doc2](http://www.tinymce.com/wiki.php/Configuration3x:file_browser_callback) – Bora

回答

12

好,努力爲TinyMCE的一些免費的文件管理器後,我碰到this

它很容易實現,自述文件給出了所有需要的配置。這工作非常好。

+0

這太棒了!從我+1。 – Bora

+0

很棒+ 2 ....... –

+1

不錯的一個。現在它位於[here](http://www.responsivefilemanager.com/)。 – naXa

-2

使用下面的代碼片段來解決這個問題

file_browser_callback: function (fieldName, url, type, win) { 
    // your code   
},