什么是禁用/启用html元素显示的tinymce按钮的名称?

时间:2011-12-07 03:08:11

标签: javascript tinymce wysiwyg

我完全忘记了那个按钮的名称,它禁用了元素的名称,比如h3标题,段落等,看看图片。 Those ugly names on top of the actual content

我正在寻找你在initymce的init函数上放的名字。

我的完整tinymce_setup.js

function CustomFileBrowser(field_name, url, type, win) {

    var cmsURL = '/admin/filebrowser/browse/?pop=2';
    cmsURL = cmsURL + '&type=' + type;

    tinyMCE.activeEditor.windowManager.open({
        file: cmsURL,
        width: 980,  // Your dimensions may differ - toy around with them!
        height: 500,
        resizable: 'yes',
        scrollbars: 'yes',
        inline: 'no',  // This parameter only has an effect if you use the inlinepopups plugin!
        close_previous: 'no'
    }, {
        window: win,
        input: field_name,
        editor_id: tinyMCE.selectedInstance.editorId
    });
    return false;
}

tinyMCE.init({

    // Init
    mode: 'textareas',
    theme: 'advanced',
    skin: 'grappelli',

    // General
    //accessibility_warnings: false,
    browsers: 'gecko,msie,safari,opera',
    dialog_type: 'window',
    editor_deselector: 'mceNoEditor',
    keep_styles: false,
    language: 'en',
    object_resizing: false,
    media_strict: true,

    // Callbackss
    file_browser_callback: 'CustomFileBrowser',

    // Layout
    width: 758,
    height: 300,
    indentation: '10px',

    // Cleanup
    cleanup: true,
    cleanup_on_startup: true,
    element_format: 'xhtml',
    fix_list_elements: true,
    fix_table_elements: true,
    fix_nesting: true,
    forced_root_block : 'p',

    // URL
    relative_urls: false,
    remove_script_host: true,

    // Content CSS
    // content_css : "css/example.css",

    // Plugins
    plugins: 'advimage,advlink,fullscreen,paste,media,searchreplace,grappelli,grappelli_contextmenu,template',

    // Theme Advanced
    theme_advanced_toolbar_location: 'top',
    theme_advanced_toolbar_align: 'left',
    theme_advanced_statusbar_location: 'bottom',
    theme_advanced_buttons1: 'formatselect,styleselect,|,bold,italic,underline,|,bullist,numlist,blockquote,|,undo,redo,|,link,unlink,|,justifyleft,justifycenter,justifyright,justifyfull,|,grappelli_adv',
    theme_advanced_buttons2: 'search,|,pasteword,template,media,charmap,|,code,|,table,cleanup,|,image,|,fullscreen,|,ibrowser,',
    theme_advanced_buttons3: '',
    theme_advanced_path: false,
    theme_advanced_blockformats: 'p,h2,h3,h4,pre',
    theme_advanced_resizing: true,
    theme_advanced_resize_horizontal: false,
    theme_advanced_resizing_use_cookie: true,
    theme_advanced_styles: 'Image Left=img_left;Image Right=img_right;Image Block=img_block',

    // Style formats
    // see http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/style_formats
    style_formats : [
        {title : 'Paragraph Small', block : 'p', classes: 'p_small'},
        {title : 'Paragraph ImageCaption', block : 'p', classes: 'p_caption'},
        {title : 'Clearfix', block : 'p', classes: 'clearfix'},
        {title : 'Code', block : 'p', classes: 'code'}
    ],

    // Templates
    template_templates : [
        {
            title : '2 Columns',
            src : '/path/to/your/template/',
            description : '2 Columns.'
        },
        {
            title : '4 Columns',
            src : '/path/to/your/template/',
            description : '4 Columns.'
        }
    ],

    // Adv
    advlink_styles: 'Internal Link=internal;External Link=external',
    advimage_update_dimensions_onchange: true,

    // Grappelli
    grappelli_adv_hidden: false,
    grappelli_show_documentstructure: 'on',

    extended_valid_elements : "iframe[src|width|height|name|align]", 

});

2 个答案:

答案 0 :(得分:2)

经过一番游戏后,我找到了一个适合我的解决方案。

打开/关闭此功能的按钮位于Grappelli TinyMCE主题第二行的最右侧:

Show/Hide Document Structure

此按钮的值(开/关)存储在一个cookie中(这很重要,因为我正在试图弄清楚为什么我的更改删除它不起作用)

要完全删除此功能

我认为我不需要使用此按钮的功能,所以我决定完全删除它。 在 tinymce_setup.js 文件中,找到此行

grappelli_show_documentstructure: "on"

并将其更改为

grappelli_show_documentstructure: false

这会在初始加载时将按钮的状态设置为“关闭”。现在请记住,最有可能的是,您的cookie中按钮的状态已设置为“on”,因此,如果您尝试刷新页面并且仍在显示,那么这是因为您的cookie中的值被读取并用于显示此选项。关闭按钮(这将更改设置cookie中的值),或清除浏览器的cookie。 在我确保将cookie值设置为关闭之后,如上所述,我以后无法使用此按钮,因此要从托盘中删除它,我们要从窗口托盘中删除 grappelli_documentstructure 按钮 - 寻找以下一行

theme_advanced_buttons2: 'search,|,pasteword,template,media,charmap,|,code,|,table,cleanup,grappelli_documentstructure'

然后只需删除 grappelli_documentstructure 按钮

theme_advanced_buttons2: 'search,|,pasteword,template,media,charmap,|,code,|,table,cleanup'

答案 1 :(得分:0)

我不完全确定你指的是哪个按钮,但我建议你看一下tinymce演示页面,你应该可以在那里找到你的按钮:http://www.tinymce.com/tryit/full.php