TinyMCE: dual forecolor and backcolor buttons?

I have a problem with TinyMCE. In IE8, forecolor and backcolor are displayed twice for some random reason.

See picture below.

TinyMCE http://img27.yfrog.com/img27/7325/tinymcedoubleforecolorb.jpg

The source code (I add forecolor and backcolor in theme_advanced_buttons2):

tinyMCE.init({
mode : "exact",
elements : "<%= editArea.ClientID %>",
custom_shortcuts : false,
language : "en",

relative_urls : false,
convert_urls : false,

forced_root_block : false,
force_p_newlines : true,
force_br_newlines : false,

fix_nesting : true,        

plugins : "pagebreak,table",
pagebreak_separator : '<div style="page-break-after:always;"></div>',

theme : "advanced",
skin : "o2k7",
skin_variant : "blue",

width : "540",
height : "470", 
theme_advanced_toolbar_location : "top",
theme_advanced_statusbar_location : "none",

theme_advanced_font_sizes : "1,2,3,4,5,6,7",
font_size_style_values : "0.6em,0.8em,1em,1.2em,1.5em,2em,3em",

theme_advanced_buttons1 : "newdocument,|,copy,cut,paste,|,hr,pagebreak,|,undo,redo,|,code|,image,code",
theme_advanced_buttons2 : "fontselect,fontsizeselect,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,forecolor,backcolor", // <-- This gives me double forecolor and backcolor
theme_advanced_buttons3 : "table,|,row_props,cell_props,|,col_before,col_after,row_before,row_after,|,split_cells,merge_cells,|,delete_col,delete_row,"
});
+1
source share
2 answers

Put these two in a separate button theme, and this should solve your problem.

This is a wild assumption, but I tested it in MS-Word and Open Office, they also have a separate topic.

0
source

3.2.2 TinyMCE :
​​, IE 8 colorpicker/filepicker.

, , , TinyMCE, , , ?

,


http://tinymce.ephox.com

0

Source: https://habr.com/ru/post/1743274/


All Articles