Topic: Insert Image fails in IE 8
ImageManager Support,
Not sure if this bug is happening only in IE 8 or earlier versions as well. Here is the issue:
When I attempt to insert an image in IE 8, I open the insert/edit image box and then click the Browse button within the insert/edit image box which opens the ImageManager box. I select the image I want to insert. However, when it returns to the insert/edit image box the Image URL is blank and the preview box is empty.
Now, if I change the tinymce config for the editor and enable the inlinepopups plugin, the problem goes away and everything works fine.
Here is the tinymce config for the editor (with the inlinepopups plugin added):
<script language="javascript" type="text/javascript">
tinyMCE.init({
force_br_newlines : true,
forced_root_block : '',
mode : "textareas",
theme : "advanced",
plugins : "style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,imagemanager,filemanager,spellchecker,fullscreen,autosave",
theme_advanced_buttons1 : "save,preview,|,image,media,|,insertimage,insertfile,|,undo,redo,|,search,replace,|,cut,copy,paste,pastetext,pasteword,|,spellchecker,code,fullscreen",
theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,|,link,unlink,anchor,|,forecolor,backcolor,|,bold,italic,underline,|,charmap,hr,emotions,table",
theme_advanced_buttons3 : "justifyleft,justifycenter,justifyright,justifyfull,|,fontselect,fontsizeselect",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_path_location : "bottom",
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]",
theme_advanced_resize_horizontal : false,
theme_advanced_resizing : true,
fullscreen_new_window : true,
nonbreaking_force_tab : true,
apply_source_formatting : true,
accessibility_warnings : false,
content_css : "../tiny_mce/tiny_mce.css",
dialog_type : "modal",
debug : false,
width : "100%",
height : "500",
spellchecker_languages : "+English=en"
});
</script>
I'm using the following version of tinymce:
majorVersion:'3',minorVersion:'2.1',releaseDate:'2008-11-04'
Any ideas?
Thx in advance.