2013-06-13 12 views

Odpowiedz

4

mógłby zrobić coś takiego:

tinyMCE.init({ 
    setup: function (ed) { 
     ed.onInit.add(editor_oninit); 
    } 
... 
}); 

function editor_oninit(ed) { 
    // Add hook for onContextMenu so that Insert Image can be removed 
    ed.plugins.contextmenu.onContextMenu.add(editor_remove_image); 
} 

a funkcja

function editor_remove_image(sender, menu) { 
    // create a new object 
    var otherItems = {}; 
    for (var itemName in menu.items) { 
     var item = menu.items[itemName]; 
     if (/^mce_/.test(itemName)) { 
      if (item.settings) { 
       if (item.settings.cmd == "mceImage" || item.settings.cmd == "mceAdvImage") { 
        // skip these items 
        continue; 
       } 
      } 
     } 
     // add all other items to this new object, so it is effectively a clone 
     // of menu.items but without the offending entries 
     otherItems[itemName] = item; 
    } 
    // replace menu.items with our new object 
    menu.items = otherItems; 
} 
0

Używam tego TinyMCE raz pierwszy i rzeczywiście szukają rozwiązania tego samego problemu, który poprosił o .

Oto moja TinyMCE Scenariusz:

tinymce.init({ 
    selector: "textarea#elm1", 
    images_upload_credentials: false, 
    theme: "modern", 
    branding: false, 
    <!-- elementpath: false, --> 
    menubar:false, 
    <!-- preview_styles: false, --> 

    height:300, 
     automatic_uploads: false, 
    plugins: [ 
     "advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker", 
     "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking", 
     "save table contextmenu directionality emoticons template paste textcolor" 
    ] 

}); 

Teraz, jak usunąć kliknij prawym przyciskiem myszy opcję URL obrazu?

prostu usunąć obraz Od wtyczek

plugins: [ 
     "advlist autolink link lists charmap print preview hr anchor pagebreak spellchecker", 
     "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking", 
     "save table contextmenu directionality emoticons template paste textcolor" 
    ] 
+0

Czy ten sam proces usuwania tabeli? –

Powiązane problemy