tinymce_2_1_2定制按钮
tinymce_2_1_2是一个功能比较强大的在线编辑器,不过它的定制按钮功能挺麻烦。这里是我的一个定制模板。
tinyMCE.init({
mode : "textareas",
theme : "advanced",
plugins: "table,save,advhr,advlink,iespell,insertdatetime",
theme_advanced_buttons1_add_before: "save,separator",
theme_advanced_buttons1_add:'fontselect,fontsizeselect',
theme_advanced_buttons2_add_before:'selectall,cut,copy,paste,pastetext,pasteword,separator,search,replace,searator',
theme_advanced_buttons3_add:'separator,insertdate,inserttime,separator,forecolor,backcolor',
theme_advanced_disable : "anchor, sub, sup, help, styleselect, formatselect, advimage, emotions, preview, zoom, flash, searchreplace, print",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_path_location : "bottom",
content_css : "example_full.css",
plugin_insertdate_dateFormat : "%Y-%m-%d",
plugin_insertdate_timeFormat : "%H:%M:%S",
extended_valid_elements : "hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
external_link_list_url : "example_link_list.js",
external_image_list_url : "example_image_list.js",
flash_external_list_url : "example_flash_list.js",
file_browser_callback : "fileBrowserCallBack",
theme_advanced_resize_horizontal : false,
theme_advanced_resizing : true
});
基本上可以满足需要。
mode : "textareas",
theme : "advanced",
plugins: "table,save,advhr,advlink,iespell,insertdatetime",
theme_advanced_buttons1_add_before: "save,separator",
theme_advanced_buttons1_add:'fontselect,fontsizeselect',
theme_advanced_buttons2_add_before:'selectall,cut,copy,paste,pastetext,pasteword,separator,search,replace,searator',
theme_advanced_buttons3_add:'separator,insertdate,inserttime,separator,forecolor,backcolor',
theme_advanced_disable : "anchor, sub, sup, help, styleselect, formatselect, advimage, emotions, preview, zoom, flash, searchreplace, print",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_path_location : "bottom",
content_css : "example_full.css",
plugin_insertdate_dateFormat : "%Y-%m-%d",
plugin_insertdate_timeFormat : "%H:%M:%S",
extended_valid_elements : "hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
external_link_list_url : "example_link_list.js",
external_image_list_url : "example_image_list.js",
flash_external_list_url : "example_flash_list.js",
file_browser_callback : "fileBrowserCallBack",
theme_advanced_resize_horizontal : false,
theme_advanced_resizing : true
});
基本上可以满足需要。